// Extra function wrapper helped solve jquery vs. prototype conflict 
(function($) { 
	jQuery(document).ready(function() {
	
	// -------- QUOTES - CYCLE SLIDESHOW ----------
	
	$('#header').cycle({ 
		speed: 1000,
	 	fx: 'fade', 
		timeout: 9000 // milliseconds between slide transitions (0 to disable auto advance) 
	});

	});
})(jQuery);
