$(document).ready(function(){
	if($.browser.msie){
		$("#nav_main li").hover(
			  function () {
				$(this).addClass("hover");
			  }, 
			  function () {
				$(this).removeClass("hover");
			  }
			);
	};
	
});
/*
$(document).ready(function(){
						   
	$("#nav_main li > ul").css({
		display:'none'
	});
	
	$("#nav_main li:has(ul)").hover(				
		  function () {
			$(this).find('ul').css({}).animate( {height:'show'}, { queue:true, duration:200 });
		  }, 
		  function () {
			$(this).find('ul').css({}).animate( {height:'hide'} , { queue:true, duration:200});
		  }
	);
});
*/