$(function() {

$('ul.hover_block2 li.first').hover(function(){
$(this).find('img').animate({top:'-250px'},{queue:false,duration:400});
}, function(){
$(this).find('img').animate({top:'0px'},{queue:false,duration:400});
});

$('ul.hover_block2 li.second').hover(function(){
$(this).find('img').animate({left:'-211px'},{queue:false,duration:400});
}, function(){
$(this).find('img').animate({left:'0px'},{queue:false,duration:400});
});

$('ul.hover_block2 li.third').hover(function(){
$(this).find('img').animate({top:'200px'},{queue:false,duration:400});
}, function(){
$(this).find('img').animate({top:'0px'},{queue:false,duration:400});
});

$('ul.hover_block2 li.fourth').hover(function(){
$(this).find('img').animate({left:'233px'},{queue:false,duration:400});
}, function(){
$(this).find('img').animate({left:'0px'},{queue:false,duration:400});
});

$('ul.hover_block2 li.fifth').hover(function(){
$(this).find('img').animate({top:'300px'},{queue:false,duration:400});
}, function(){
$(this).find('img').animate({top:'0px'},{queue:false,duration:400});
});

$('ul.hover_block2 li.sixth').hover(function(){
$(this).find('img').animate({left:'-300px'},{queue:false,duration:400});
}, function(){
$(this).find('img').animate({left:'0px'},{queue:false,duration:400});
});

});
