/* Declare a namespace for the site */
var Site = window.Site || {};

/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	
	$(function(){

		

	});

	//same as $(document).ready();
	$(function() {

		//$('#carousel').load('/content/help/carousel.htm');

        
		$('.carousel').cycle({
            fx:		'fade',
			speed:	1000,
			delay:	3000 // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        });
		
	});


	
})(jQuery);


