<!---- Top Menu Improvements ---->
function et_top_menu(){
jQuery('ul.superfish').superfish({
delay: 300, // one second delay on mouseout
animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation
speed: 'fast', // faster animation speed
autoArrows: true, // disable generation of arrow mark-up
dropShadows: false // disable drop shadows
});
jQuery('ul.nav > li > a').hover(function(){
jQuery(this).stop().animate({paddingTop: "14px"},300,function(){
jQuery(this).addClass("top_arrow");
})
},function(){
jQuery(this).stop().removeClass("top_arrow").animate({paddingTop: "25px"},300);
});
var $current_page_cat = jQuery('ul.nav > li.current_page_item, ul.nav > li.current-cat');
Creo que ese es la parte del script que controla ese movimiento.