$(document).ready(function(){

    // Handle horizontal menu dropdowns
    jQuery('#navContainer ul li').hover(
        function(){ jQuery('ul', this).css('display', 'block'); 
                    jQuery('ul ul', this).css('display', 'none');
                    jQuery(this).addClass('hover'); },
        function(){ jQuery('ul', this).css('display', 'none'); 
                    jQuery(this).removeClass('hover'); 
    });
    
});
