$(document).ready(function(){  

     $("div.naviItem a").mouseover(function() { 
   
         $(this).parent().find("div.dropdown").slideDown('fast').show();
   
         $(this).parent().hover(function() {  
         }, function(){  
             $(this).parent().find("div.dropdown").slideUp('fast');
         });   
     });  
   
 });  
