$(document).ready(function(){

	$("h2").wrapInner('<span/>');

	$(".product.images").each(function(){
		$("img:eq(0)", this).css({ zIndex: 100 }).wrap('<span />');
		$("img:eq(1)", this).css({ zIndex:  99 });
		$("img:eq(2)", this).css({ zIndex:  98 });
	});

	$(".images").hover(function(){
		$("img:eq(0)", this).addClass("hover");

		$(this).parent().animate({ width: "1200px" }, 0, function(){
			$(this).find("section.images").css({ width: "905px" });
			$(this).find("section.text").addClass("tiny");
			
			$("img:eq(1)", this).animate({ left: "305px" }, 350);
			$("img:eq(2)", this).animate({ left: "610px" }, 350);
		});
  }, function(){
		$(".images img").removeClass("hover").stop().animate({ left: 0 }, 0, function(){
			$("section.images, article.category-product").removeAttr("style");
			$("section.text").removeClass("tiny");				
		});
  });	
	
});
