$(document).ready(function(){ $(".escena").hover(function(){ $(this).animate({ backgroundColor:"white" },2000); $(".dot").animate({marginRight:"20px"},900); }, function(){ $(".dot").animate({marginRight:"-100px"},900); }); $(".dot").hover(function(){ $(this).animate({ width:"120px", height:"120px" },200); },function(){ $(this).animate({ width:"100px", height:"100px" },200); }); });