jQuery(document).ready(function() {
	$("#menu li").mouseenter(function(){
		if($(this).children("ul").length>0){
			$(this).children("ul").slideDown("normal");
		}
	}).mouseleave(function(){
		if($(this).children("ul").length>0){
			$(this).children("ul").slideUp("normal");
		}
	});
	
	
});



