
$(function(){
    $("div#test").hover(function() {
        $(this).stop().animate({
            width: 120
        }, 'fast');
        $(this).css('cursor','hand');
    }, function() {
        $(this).stop().animate({
            width: 48
        }, 'normal');
        $(this).css('cursor','pointer');
    });


})

