jQuery(document).ready(function($){

	$('#home-splash #catpcha-bg').hide();
	

	$('#slideshow-start').click(function(){
		$(this).fadeOut();
		$('#home-signup').fadeOut();
		$('#home-splash #landing-splash').fadeOut('slow');
		setTimeout(function() {
			$('#home-splash #captcha-bg').fadeIn('slow');
			$('#home-splash #messaging').fadeIn();
			$('#home-splash #bad-captchas').fadeIn();	
		}, '500');
		
		setTimeout(function() {
				
			$('#home-splash #messaging').cycle({ timeout: 2500, fx: 'fade', nowrap: 3, easing: 'easeInOutBack', end: function() {  endSlideShow(); } });
			$('#home-splash #bad-captchas').cycle({ timeout: 2500, fx: 'scrollRight', pager: '#cycle-nav', nowrap: 1, easing: 'easeInOutBack', end: function() {  endSlideShow(); } });		
		}, '700');
			$('#skip-to-the-end').fadeIn();	
			
			
	$('#skip-to-the-end').click(function(){
			$('#home-splash #bad-captchas').cycle('destroy');	
			$('#home-splash #messaging').cycle('destroy');	
			$('#home-splash').remove('#good');
			$('#home-splash #messaging').fadeOut();
			$('#home-splash #bad-captchas').fadeOut();
			$('#home-splash #captcha-bg').fadeOut('slow');
			$('#home-splash #cycle-nav').fadeOut();
			$('#skip-to-the-end').fadeOut();	
			$('#home-splash #reveal-splash').fadeIn('slow');
			$('#experience-it').fadeIn();

	});
			
		
		function endSlideShow() {
			$('#home-splash #messaging').fadeOut();
			$('#home-splash #bad-captchas').fadeOut();
			$('#home-splash #captcha-bg').fadeOut('slow');
			$('#home-splash #cycle-nav').fadeOut();
			$('#skip-to-the-end').fadeOut();	
				
			setTimeout(function() {
				$('#home-splash #good').fadeIn('slow');
			}, '500');
			
			setTimeout(function() {
				$('#home-splash #good').fadeOut('slow');
				$('#home-splash #reveal-splash').fadeIn('slow');
				$('#experience-it').show();
			}, '4000');
		}
		
	});




});
