$( function () {
	$(".classyimage a")
		.fancybox({'alignment': 'center', 'zoomOpacity': true, 'overlayShow': true});

	$(".classyimage a").hover(
		function () { 
			zindex = $(this).css('z-index'); 
			$(this).stop()
				.css({"z-index": "50"})
				.animate({margin: "2px"}, "fast");
		},
		function () { 
			$(this).stop()
				.css({"z-index": zindex})
				.animate({margin: "0"}, "fast"); 
		}
	);
	// preload large images for imgbox
	$(".classyimage a").each( 
		function () {
			var imglink = $(this).attr("href");
			$(this).removeAttr("target");
			jQuery(document.createElement('img')).attr("src", imglink);
		}
	);
});
