jQuery(document).ready(function(){
	colHeights();
});

function colHeights(){
	
	// the needs fixing it only sizes up. Not down. We may need additional markup to achieve this.
	
	$('.InnerCol').css('height','auto');
	
	// Col heights
	var h = 0;
	$('.InnerCol').each(
		function(){
			var th = $(this).height();
			if(th > h){h = th;}
		}
	);
//	$('.InnerCol').height(h);	
	$('.InnerCol').css('height',h + 'px');

}
