$(document).ready(function(){
	$('[data-product]').each(function(){
		var product = $(this).attr('data-product');
		var url = 'http://www.checkadvantage.com/images/'+product+'-{0}-sm.jpg';
		
		var images = [
			{key: 'A', url: url.replace(/\{0}/g,'A'), width: 235, height: 110},
			{key: 'B', url: url.replace(/\{0}/g,'B'), width: 235, height: 110},
			{key: 'C', url: url.replace(/\{0}/g,'C'), width: 235, height: 110},
			{key: 'D', url: url.replace(/\{0}/g,'D'), width: 235, height: 110},
		];
		
		$(this).photoScrub({
			images	:	images,
			preload	:	true
		});
	});
	
	try{
		$(".prettyPhoto a").prettyPhoto();
	} catch(ex){ /* Supress */ }
});
