$(document).ready(function(){
$(".navtop ul").hide();
		$("..navtop > li").hover(function(){
			$(this).addClass("over");
    		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show();
		}, function(){
			$(this).removeClass("over");
			$(this).find('ul:first').css({visibility: "hidden", display: "none"});
		});

});