(function ($) {
	$(function () {
		
		$('.product-image.overlay').hover(
			function () {
				var link = $(this).find('a');
				$(this).append('<a href="' + link.attr('href') + '" class="overlay"><span>Zoom</span></a>');
			},
			function () {
				$(this).find('.overlay').remove();
			}
		);
		
	});
})(jQuery);
