$(document).ready(function(){ $('#imgZoom').width(100); $('#imgZoom').mouseover(function() { $(this).css("cursor","pointer"); $(this).animate({width: "250px"}, 'slow'); }); $('#imgZoom').mouseout(function() { $(this).animate({width: "100px"}, 'slow'); }); });