$(function() {

	$("ul.thumb li").hover(function() {
		$(this).css({"z-index" : "10"});
		$(this).find("img").addClass("hover").stop().animate({
			marginTop: "-260px",
			marginLeft: "-123px",
			top: "50%",
			left: "50%",
			width: "246px",
			height: "480px"
		}, 400, "easeInOutBack");
	}, function() {
		$(this).css({"z-index" : "0"});
		$(this).find("img").removeClass("hover").stop().animate({
			marginTop: "-170px",
			marginLeft: "-87px",
			top: "50%",
			left: "50%",
			width: "174px",
			height: "340px"
		}, 600, "easeOutBounce");
	});

});
