;(function($){
	
	var init = function()
	{

		// Init background_switcher
		$( background_switcher );

		// Homepage cycle
		$('.panes').cycle({
			fx: 'fade',
			speed: 700,
			timeout: 8000,
			prev: '.prev',
			next: '.next',
			containerResize: 1,
			height: 'auto',
			after: onAfter,
			pause: true,
			pauseOnPagerHover: true
		});
		
		$('.panes.slow').cycle({
			fx: 'fade',
			speed: 700,
			timeout: 4000,
			prev: '.prev',
			next: '.next',
			containerResize: 1,
			height: 'auto',
			after: onAfter,
			pause: true,
			pauseOnPagerHover: true
		});
		
		function onAfter(curr, next, opts)
		{
			var index = opts.currSlide;
			// Change out pager
			$('.gallery-nav span.current').text( index + 1 );
			// $('.prev')[index == 0 ? 'hide' : 'show']();
			// $('.next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
		}
	};
	
	// Backgorund-switcher
	var background_switcher = function()
	{
		// This will be the background image
		var img = '';
		
		// Work the magic ;)
		$('.background-switcher ul li a').click( function(e){
			e.preventDefault();
			img = $(this).attr('rel');
			$('body').css( 'background-image', 'url(' + img + ')' );
			$('.background-switcher ul li a').removeClass('active');
			$(this).addClass('active');
			$.cookie({ 'bg' : img }, { expires: 365, path: '/', domain: '.causedesign.com', secure: false });  
			return false;
		});
		
	};

	
	// Init
	$( init );
	
})(jQuery);
