Can't get animate callback to work

Can't get animate callback to work

The animation works, but the callback function (alert) doesn't get called.

function first() {
    $("#Stan").animate({marginLeft: "150px"}, {duration: 1000}, {dummy: 1}, {callback: function(){alert('hi');}} );
}


$("#go").click(function(){
    first();
});
</code]