$(function(){
	// Horizontal
	$("#products-body-left").hover(function(){
		$(".product-img-one img", this).stop().animate({left:"-25px"},{queue:false,duration:350});
	}, function() {
		$(".product-img-one img", this).stop().animate({left:"0px"},{queue:false,duration:350});
	});
	// Vertical
	$("#products-body-left").hover(function(){
		$(".product-txt-slider", this).stop().animate({top:"-80px"},{queue:false,duration:350});
	}, function() {
		$(".product-txt-slider", this).stop().animate({top:"0px"},{queue:false,duration:350});
	});
});

$(function(){
	// Horizontal
	$("#products-body-center").hover(function(){
		$(".product-img-two img", this).stop().animate({left:"-34px"},{queue:false,duration:350});
	}, function() {
		$(".product-img-two img", this).stop().animate({left:"0px"},{queue:false,duration:350});
	});
	// Vertical
	$("#products-body-center").hover(function(){
		$(".product-txt-slider", this).stop().animate({top:"-80px"},{queue:false,duration:350});
	}, function() {
		$(".product-txt-slider", this).stop().animate({top:"0px"},{queue:false,duration:350});
	});
});

$(function(){
	// Horizontal
	$("#products-body-right").hover(function(){
		$(".product-img-three img", this).stop().animate({left:"-33px"},{queue:false,duration:350});
	}, function() {
		$(".product-img-three img", this).stop().animate({left:"0px"},{queue:false,duration:350});
	});
	// Vertical
	$("#products-body-right").hover(function(){
		$(".product-txt-slider", this).stop().animate({top:"-80px"},{queue:false,duration:350});
	}, function() {
		$(".product-txt-slider", this).stop().animate({top:"0px"},{queue:false,duration:350});
	});
});
