/* 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($) {
	
	//same as $(document).ready();
	$(function() {

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

	});

	$(function(){

	});

	
})(jQuery);


