Ver original$(document).ready(function(){ $("div.menu").hover( function() { // mouseOver $(this).stop().animate({ height: "125px" }); }, function() { // mouseOut $(this).stop().animate({ height: "25px" }); } );});