/* 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() {
		
		/*-------------------------------------------    
			Featured Slides
		-------------------------------------------*/

		$('.featured .slides') 
			.after('<div class="pager">') 
			.cycle({ 
				fx:     'fade', 
				speed:  'fast', 
				timeout: 9000, 
				pager:  '.pager' 
		});	
		
		/*-------------------------------------------    
			Photoset Gallery Overlay		
		-------------------------------------------*/	

		$('.photoset a').colorbox();
		
		/*-------------------------------------------    
			Modal Overlay
		-------------------------------------------*/
	
		$('li.video a').colorbox({
			iframe:true,
			innerWidth:700,
			innerHeight:500,
			current:'Video {current} or {total}'
		});
		
		/*-------------------------------------------    
			Video Colorbox
		-------------------------------------------*/
		
		$('.videos .thumbnail').colorbox({
			iframe:true,
			innerWidth:700,
			innerHeight:500,
			current:'Video {current} or {total}'
		});
		
	});
	
})(jQuery);


