jQuery().ready(function(){   	
	jQuery("#col1 a:has(img), .images a").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	}); 
	jQuery("#col1 a:has(img), .images a").css({
		'cursor': 'url(http://borgen.modx/lib/zoomin.cur), pointer', 
		'outline': 'none'
	}); 
	
	
	jQuery(".hoverbox a").hover(
			function () {
				var index = jQuery('.hoverbox a').index(this);
				jQuery(".hoverbox a img.preview:eq("+index+")").addClass("previewHover");
			}, 
			function () {
				var index = jQuery('.hoverbox a').index(this);
				jQuery(".hoverbox a img.preview:eq("+index+")").removeClass("previewHover");
			}
	);
});
