$(document).ready(function() {
	$(function() {
		$('ul.hover_block li.top').hover(function(){
			$(this).find('img').animate({top:'-167px'},{queue:false,duration:500});
		}, function(){
			$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
		});
		$('ul.hover_block li.right').hover(function(){
			$(this).find('img').animate({left:'-220px'},{queue:false,duration:500});
		}, function(){
			$(this).find('img').animate({left:'0px'},{queue:false,duration:500});
		});
		$('ul.hover_block li.left').hover(function(){
			$(this).find('img').animate({left:'220px'},{queue:false,duration:500});
		}, function(){
			$(this).find('img').animate({left:'0px'},{queue:false,duration:500});
		});
	});
});
