  $(document).ready(function(){
	$("#topmenu ul li").hover(function(){
			$(this).find("ul").eq(0).show();
			$(this).find("a").eq(0).addClass("hover");
		},
		function(){
			$(this).find("ul").hide();
			$(this).find("a").eq(0).removeClass("hover");
		});
		
	});
