Сделал так НО не работает, не подскажите в чем может быть ошибка?
$(document).ready(function(){
$('.bk').hover(function () {
$('.block').toggle( function () {
$(this).animate({'marginLeft':'0px'}, 2000);
}, function () {
$(this).animate({'marginLeft':'-500px'}, 2000);
})
})
});