$(document).ready(function(){
    
   $('#navigation-0 li').hover(function(){
       $('.menu', $(this)).width($(this).width()).stop(true, true).slideDown();
   }, function(){
       $('.menu', $(this)).stop(true, true).slideUp();
   });
    
});
