$(window).load(function(){
$('div a').hover(
function () {
$(this).stop().animate({
'margin-left': '50px',
'margin-top': '20px'
}, 300);
},
function () {
$(this).stop().animate({
'margin-left': '0px',
'margin-top': '0px'
}, 300);
}
);
});
Вправо движется, а вниз нет... =( и это ведь по идеи должно получатся как то по диагонали движение?