/* 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() {
		
		/* Gallery for Home Page */
		
		$('.slides').cycle({
			fx: 'fade',
			timeout: '3000',
			slideResize: 0,
			prev: '.gallery .previous',
			next: '.gallery .next'
		});		

	});


	$(window).bind("load", function() {
		
		
	
	});
	
})(jQuery);
