Hiya демо здесь : http://jsfiddle.net/DV5GU/
Я заимствовал изображение из ссылки, которую вы дали: P
также здесь содержатся некоторые полезные идеи: http://jsfiddle.net/jfriend00/eW53L/ & здесь: http://jsfiddle.net/vcw8c/
Код запроса
$(document).ready(function(){
$('#image1').width(200);
$('#image1').mouseover(function()
{
$(this).css("cursor","pointer");
$(this).animate({width: "300px"}, 'slow');
});
$('#image1').mouseout(function()
{
$(this).animate({width: "200px"}, 'slow');
});
});