$(function() {
	    $("#menu").find("li").each(function() {
	     if ($(this).find("ul").length > 0) {
	      $(this).mouseenter(function() {
	       $(this).find("ul").stop(true, true).slideDown(300); 
	      }); 
	      $(this).mouseleave(function() { 
	      	if($(this).find("li").hasClass("menu-selected"))
	      	{
	      		$(this).find("ul").stop(true, true).slideDown(300); 
	      	}
	      	else
	      	{
	       		$(this).find("ul").stop(true, true).slideUp(500);
	       	}  
	      });
	     }
	    });
	    $(this).find("ul").stop(true, true).slideDown(300);
	   });
