// JavaScript Document
$(function() {
			$('.hover_block').hover(function(){
				$(this).find('img').animate({top:'182px'},{queue:false,duration:10});
			}, function(){
				$(this).find('img').animate({top:'0px'},{queue:false,duration:10});
			});
		});
$(function() {
			$('.hover_block1').hover(function(){
				$(this).find('img').animate({top:'182px'},{queue:false,duration:10});
			}, function(){
				$(this).find('img').animate({top:'0px'},{queue:false,duration:10});
			});
		});

$(function() {
			$('.hover_block2').hover(function(){
				$(this).find('img').animate({left:'182px'},{queue:false,duration:10});
			}, function(){
				$(this).find('img').animate({left:'-5px'},{queue:false,duration:10});
			});
		});