function innoversityStretchFrontpageContentColumns() {
	
	var nrOfColumns = 3;
	var highestHeight = 0;
	
	// Loop the columns
	for(var x = 1; x <= nrOfColumns; x++) {
		
		// Get current height
		currentHeight = element('contentColumn' + x).getH();
		
		// If the currently looped colunn is higher than the previously highest height
		if(currentHeight > highestHeight) {
			
			// Store the new highest height
			highestHeight = currentHeight;
			
		}
		
	}
	
	// Add the unit
	highestHeight = highestHeight + 'px'
	
	// Loop the columns and set their height to the highest
	for(var x = 1; x <= nrOfColumns; x++) {
		
		element('contentColumn' + x).setH(highestHeight);
		
	}
	
}