jQuery(document).ready(function()
{
	//INITIALISE THE MAXIMUM HEIGHT
	max_height = Math.max(jQuery("#container_contents_left").height(), jQuery("#container_contents_right").height());
	
	//SET THE CONTENT CONTAINER HEIGHTS TO THE MAXIMUM HEIGHT
	jQuery("#container_contents_left").height(max_height);
	jQuery("#container_contents_right").height(max_height);
});

