$(document).ready(function() {

    // Find all the "old" ProductShots and disable them by altering the cursor and switching off the link
    var oldProductImagesArray = $("a[@rel=ProductShots]").get();

    for(var ii=0; ii<oldProductImagesArray.length; ii++)
    {
        oldProductImagesArray[ii].href='';
        oldProductImagesArray[ii].style.cursor = 'default';
        oldProductImagesArray[ii].disabled = true;
        oldProductImagesArray[ii].onclick = function(){ return false; };
    }

	$("a[@rel=ZoomingImagePlugin]").fancybox({
		'hideOnContentClick': true,
		'overlayShow':	true
	});
});