$(document).ready(function(){
	initImageZoom();
});
// init Image Zoom
function initImageZoom(){
	$(".image-list a").each(function(){
		var link = $(this);
		var img = link.find("img");
		var widthImg = img.outerWidth();
		var heightImg = img.outerHeight();
		link.css({width: widthImg, height: heightImg});
		img.css("position", "absolute").css("top", "0").css("left", "0");
		link.mouseenter(function(){
			link.css({zIndex: "2"});
			img.animate({
				marginTop: "-1%",
				marginLeft: "-1%",
				width: "100%",
				height: "100%"
			},{
				// speed for start animation
				duration:250
			});
		}).mouseleave(function(){
			link.css({zIndex: "1"});
			img.animate({
				marginTop: "0",
				marginLeft: "0",
				width: "100%",
				height: "100%"
			},{
				// speed for end animation
				duration:250
			});
		});
	});
}
