$(document).ready(function(){ $("#mainMenu a").hover(function() { $(this).next("em").animate({opacity: "show", left: "0"}, "slow"); }, function() { $(this).next("em").animate({opacity: "hide", left: "-400"}, "slow"); }); });