$(document).ready(colsize_initialise);

function colsize_initialise(){
// Each column has a different setup so we need to explicitely define which part to resize

	var colList = new Array('Col1','Col2','Col3');
	
	var boxHeight = 0;
	for(var i = 0;i<colList.length;i++){
		var height = $('#'+colList[i]).height();
		if(height > boxHeight){
			boxHeight = height;	
		}
	}
	
/*	if($('#Col1').height() < boxHeight){
		var diff = boxHeight - $('#Col1').height();
		$('#SideMenuBox').height($('#SideMenuBox').height() + diff);
	}
	if($('#Col2').height() < boxHeight){
		var diff = boxHeight - $('#Col2').height();
		$('#MainContentBox').height($('#MainContentBox').height() + diff);
	}
	*/
	
} // end colsize_initialise