$(document).ready( function(){
	
	// =================
	// = Banner Slider =
	// =================
	
	$('#banner').easySlider( { auto: true, continuous: true, controlsShow: false, pause: 6000 } );
	
	// ===============================================================================
	// = Adds class of 'last' to every 3rd gallery item (insures proper img margins) =
	// ===============================================================================

	$('#gallery li:nth-child(4n)').addClass('last');
	
	// =======================================
	// = Calls Fancybox when link is clicked =
	// =======================================
	
	$('a.fancybox-photo').fancybox( { 'overlayOpacity' : '.8', 'overlayColor' : '#000', 'showCloseButton' : true } );
	
	// ==========
	// = Videos =
	// ==========
	
	$('a.fancybox-video').click( function() {
		$.fancybox({
				'overlayOpacity'   : .8,
				'overlayColor'     : '#000',
				'showCloseButton'  : true,
				'padding'		   : 0,
				'autoScale'		   : false,
				'transitionIn'	   : 'none',
				'transitionOut'	   : 'none',
				'title'			   : this.title,
				'width'	           : 680,
				'height'		   : 495,
				'href'			   : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			   : 'swf',
				'swf'			   : {
			    'wmode'	           : 'transparent',
				'allowfullscreen'  : 'true'
				}
			});

		return false;
	});	
    
} );
