jQuery(document).ready(function($){
	var jsp_links;
	if (typeof $.colorbox === 'function'){
		jsp_links = $('a[href^="http://s7d5.scene7.com/s7/zoom/flasht_zoom.jsp"]');			// example: <a class="scene7Popup" target="_blank" href="http://s7d5.scene7.com/s7/zoom/flasht_zoom.jsp?company=SerenaandLily&amp;sku=SWB-SL01&amp;config=SerenaandLily/popupMultipleViews&amp;locale=en">
		jsp_links.unbind('click').click(function(event){
			event.preventDefault();
			event.stopImmediatePropagation();
			var Scene7_image_id	= $(this).attr('href').replace(/^.*sku=([a-zA-Z0-9_-]+).*$/, '$1');
			var popup_img_url	= 'http://s7d5.scene7.com/is/image/SerenaandLily/' + Scene7_image_id + '?wid=600&hei=600&fmt=jpeg&qlt=100&resMode=sharp2&op_usm=1.0,1.0,0,0';
			$.colorbox({
				"href"	: popup_img_url,
				"photo"	: true
			});
		});
	}
});
