
// Automatically calls all functions in SITE.init
jQuery(document).ready(function() {
	SITE.global();
});

// Module pattern:
// http://yuiblog.com/blog/2007/06/12/module-pattern
var SITE = (function($) {
	return {
		// Start It
		global: function() {
			for (var i in SITE.init) {
				SITE.init[i]();
			}
		},

		init: {


			slider: function()
			{
				$('ul#slider').bgSlider({
					autoInterval: 4000,
					fadeDuration: 1000
				});
			},

				
				

			
			
		},
		
		
	};
// Pass in jQuery ref.
})(jQuery, this);






