// Extra function wrapper helped solve jquery vs. prototype conflict 
(function($) { 
	jQuery(document).ready(function() {
	
	// -------- HOME PAGE SLIDESHOW - CYCLE SLIDESHOW ----------

		$('#CoolPetProductsSlideshow').cycle({ 
			speed: 2000, // transition speed
		 	fx: 'fade',
			timeout: 6000,  // milliseconds between slide transitions (0 to disable auto advance)
		});
		

	});
})(jQuery);
