// prevent execution of jQuery if included more than once
$(function(){
    $("ul#dropdown li ul").hide();
    $("ul#dropdown > li > a").hover(function(){
$(this).next("ul").show();  
    }, function(){
$(this).next("ul").hide(); 
    });
    
    $("ul#dropdown li ul").hover(function(){
$(this).show();    
    }, function(){
$(this).hide();    
    });
});

