$(document).ready(function(){

contentHeight = $("#content").height();
leftHeight = $("#leftColum").height();




if (leftHeight > contentHeight){
	$("#leftColum").height("860");
}else{
	$("#leftColum").height(contentHeight+49);	
}

//alert("1: "+$("#content").height()+" 2: "+$("#leftColum").height());

$(".menuItem").hover(
	function(){
		$(this).find(".submenu").css("display","block");
		$(this).find(".submenu").width($(this).width());
		$(this).find(".rootLink").css("background-image","url('templates/images/active_top_menu_bg.jpg')");
	},
	function(){
		$(".submenu").css("display","none");
		$(this).find(".rootLink").css("background-image","none");
	}
	);

});

