$(document).ready(function() {
  
  $('ul#nav li').mouseenter(function() {
	  $(this).find("ul").fadeIn('slow');
	}).mouseleave(function(){
      $(this).find("ul").fadeOut('slow');
    });
  

  
});
