$(function(){

		$('#header ul li').hover(function(){
			if($(this).find("ul").length != 0)
			{
				$(this).addClass("hover");			
				$(this).find("a.mainitem").addClass("hover");			
				$(this).find("ul").css("display","inline");		
			}
			
		}, function () {
			if($(this).find("ul").length != 0)
			{
				$(this).removeClass("hover");		
				$(this).find("a.mainitem").removeClass("hover");	
				$(this).find("ul").css("display","none");
			}	
		});






	

});
