$(document).ready( function(){		
	$("#topmenu li:has(ul)").hover(function(){
		$(this).children("ul").css("display", "block");
 },	function(){
  $(this).children("ul").fadeOut("normal");
	});
});