$(function() {
	$('ul.hover_block li').hover(function(){
		$(this).find('img').animate({top:'145px'},{queue:false,duration:900});
	}, function(){
		$(this).find('img').animate({top:'0px'},{queue:false,duration:900});
	});
	$('ul.hover_block2 li').hover(function(){
		$(this).find('img').animate({left:'-15px'},{queue:false,duration:300});
	}, function(){
		$(this).find('img').animate({left:'0px'},{queue:false,duration:300});
	});
});
