
$(function($){

    $(".dropdown").hover(function(){
    
        $(this).addClass("hover");
        $(this).find('ul.sub_menu').css('display', 'block');
    
    }, function(){
    
        $(this).removeClass("hover");
        $(this).find('ul.sub_menu').css('display', 'none')
    
    });

});(jQuery) /* ($), (jQuery) to avoid conflict with prototype */
