jQuery(function(){
	jQuery('.colorboxme').colorbox({iframe : true, width: '700px', height: '500px'});
	
	jQuery('.product-img-box .product-image-zoom img').dblclick(function(){
		jQuery(this).colorbox(
		{
			photo : true, 
			href : jQuery('.product-img-box .product-image-zoom img').attr('src'),
			maxWidth: '800px',
			maxHeight: '650px',
			onClosed : function(){
				jQuery('.product-img-box .product-image-zoom img').removeClass('cboxElement')
			}
		}
	)
	});
});
