$(function(){
        $("#donnahito").mouseover(function() {
            $(this).stop(true, false).animate({width: '89px', height: '295px'}, 1000);
         });
        $("#donnahito").mouseout(function() {
            $(this).stop(true, false).animate({width: '60px', height: '199px'}, 500);
        });
})

