 $(document).ready(function(){
					   
		if($.browser.msie){ $("#footer").css("padding-bottom","25px"); }
		
		$('#left-content').find("h3:nth-child(1)").css("margin-top","0");
		
		$("#submenu").hover(
			function(){
				$(".submenu-second-level").slideDown("normal");
				$("#submenu-first-level").css("height","auto");
			},
			function() {
				//$(".submenu-second-level").slideUp(1500, function(){
				//	$("#submenu-first-level").css("height","14px");
				//});
			}
		);
		
 });
