$(document).ready(function() {
	
	// compliant new window code
	$('a[rel="external"]').attr('target', '_blank');
	
	// fancybox
	$("a.fancy-image").fancybox();
	
	// header promo panel
	$('#slideshow').after('<ul id="slideshow-nav">').cycle({ 
		fx:     'fade', 
		speed:  1000, 
		timeout: 7000, 
		pager:  '#slideshow-nav',
		pause: 1 
	});
	
	// product details page gallery
	$('#product-images').after('<ul id="product-images-nav">').cycle({ 
		fx:     'fade', 
		speed:  1000, 
		timeout: 4000, 
		pager:  '#product-images-nav',
		pause: 1 
	});
	
});
