$(function(){
	$("#menu_body").addClass('cols');
	if(jQuery.browser.msie && jQuery.browser.version.substr(0,1)=='6'){
		$("#menu_head").addClass('htc');
		$("#menu_body").addClass('htc');
		$("#menu_foot").addClass('htc');
		$("#content_head").addClass('htc');
		$("#content_body").addClass('htc');
		$("#content_foot").addClass('htc');
	}
	maxHeight=0;
	$(".cols").each(function(){
		h=$(this).height();
		if(maxHeight<h) maxHeight=h;
	});
	$(".cols").each(function(){
		h=$(this).css('height',maxHeight+'px');
	});
//	$(".cols").equalHeights();
})


