
jQuery(window).bind("load",function(){
    jQuery(".menu-h-menu-vista li.top").hover(function(){
        jQuery(this).children("ul.sub").show();
    },function(){
        jQuery(this).children("ul.sub").hide();
    });
    jQuery(".menu-h-menu-vista li.sub").hover(function(){
        jQuery(this).children("ul.sub").css("left",jQuery(this).width()).show();
    },function(){
        jQuery(this).children("ul.sub").hide();
    });
    
});
