$(document).ready(function(){


 
 $("ul.menu li").hover(function(){
   $("ul", this).slideDown("fast");

    return false;
 },function(){
   $("ul", this).slideUp("slow");
 });

 
  
        //Following events are applied to the trigger (Hover events for the trigger)  
       
  
});


