$(document).ready(function() {
	//Rotate product images on homepage
	if ($('.rotator').length > 0) {
		$('.rotator').cycle({
			fx: 'fade',
			timeout: 4000
		});
	}

	//Add modal functionality where class is set
	 $('.modal-inline').colorbox({transition:'elastic', speed:500, width:'80%', height:'50%', inline:true});
	 $('.modal-image').colorbox({transition:'elastic', speed:500, width:'80%', height:'50%', inline:false});
	 $('.modal-image-square').colorbox({transition:'elastic', speed:500, width:'1000', height:'1000', inline:false});
});
	
