	$(document).ready(function() {
		$(".iframe").fancybox({
			'width'				: 700,
			'height'			: 370,
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe',
			'overlayColor'		: '#000',
			'overlayOpacity'	: '0.6',
			'showCloseButton'	: false
		});

		$('#slideshow').cycle({
			fx					: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speed				: 3000
		});
		
		$('#productshow').after('<ul id="prodnav">').cycle({ 
			fx				: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout			: 0, 
		    pager			: '#prodnav',
			// callback fn that creates a thumbnail to use as pager anchor 
			pagerAnchorBuilder: function(idx, slide) { 
				return '<li><a href="#"><img src="' + slide.src + '" width="90" /></a></li>'; 
			} 			 
		});
		$('#productshow_carrier').after('<ul id="prodnav" class="carrier">').cycle({ 
			fx				: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout			: 0, 
		    pager			: '#prodnav',
			// callback fn that creates a thumbnail to use as pager anchor 
			pagerAnchorBuilder: function(idx, slide) { 
				return '<li><a href="#"><img src="' + slide.src + '" width="90" /></a></li>'; 
			} 			 
		});
					
	});

