jQuery(document).ready(function() {			
	$(".menu>li").hover(
	  function () {
		$(this).addClass("hover");
		$(this).children("ul").fadeIn("fast"); 
	  },
	  function () {
		$(this).removeClass("hover");
		$(this).children("ul").fadeOut("fast"); 
	  }
	);
});	
