/* CRISS ANGEL */
/* JAVASCRIPT: JOIN / COMPARE PAGE
----------------------------------------------------------------------------- */


/* LOAD FUNCTION
----------------------------------------------------------------------------- */


	$(window).load(function() {
	
	
		slideshow();
		popUp();
		
	
/* SLIDESHOW ON JOIN PAGE
----------------------------------------------------------------------------- */


	function slideshow() {
	
		
		/* Join Page */
		
	
		if (page == "join") {
		
			$('#slides').each(function() {		
					
				// START SLIDESHOW
				$(this).before('<div id="paging">').cycle({
					fx: 'fade',
					speed: 2000,
					timeout: 6500,
					pager: '#paging',
						
				before: function() { if (window.console) console.log(this.src); }
				});
					
				// CUSTOMIZE PAGING LINKS
				$('#paging a:nth-child(1)').livequery(function() { $(this).addClass('tickets'); });
				$('#paging a:nth-child(1)').livequery(function() { $(this).text('Tickets'); });
	
				$('#paging a:nth-child(2)').livequery(function() { $(this).addClass('meetandgreets'); });
				$('#paging a:nth-child(2)').livequery(function() { $(this).text('Meet & Greets'); });
	
				$('#paging a:nth-child(3)').livequery(function() { $(this).addClass('merch'); });
				$('#paging a:nth-child(3)').livequery(function() { $(this).text('Merch Package'); });
	
				$('#paging a:nth-child(4)').livequery(function() { $(this).addClass('exclusive'); });
				$('#paging a:nth-child(4)').livequery(function() { $(this).text('Exclusive Content'); });
	
				$('#paging a:nth-child(5)').livequery(function() { $(this).addClass('fansite'); });
				$('#paging a:nth-child(5)').livequery(function() { $(this).text('Fan Site'); });
	
				$('#paging a:nth-child(6)').livequery(function() { $(this).addClass('comments'); });
				$('#paging a:nth-child(6)').livequery(function() { $(this).text('Comments'); });
	
				// UNHIDE SLIDESHOW
				$(this).css('visibility','visible');
				$('#upsell #slides li.slide').css('visibility','visible');
				
			});
		
			
			$('a#watch').click(function() {
	
				$('#slides').hide();
				$('#slides').cycle('pause');
				$('#paging a').removeClass('activeSlide');
				$('#promo').show();
				var video_player = $('#promo div.flash div').attr('id');
				eval(video_player)();

				return false;
				
			});
			
			$('#paging a').click(function() {
	
				$('#promo div.flash div').empty();
				$('#promo').hide();
				$('#slides').cycle('pause');
				$('#slides').show();
				
			});
		
		};
		
		
		/* Login Page */

		
		if ($('#page-login div.benefits div').length > 0) {

			$('div.benefits div').cycle({
		
				fade: true,
				speed: 400,
				timeout: 6000
			
			});

		}
			
	}
	

/* SHOW & HIDE POPUPS
----------------------------------------------------------------------------- */

	
	function popUp() {
	
		if (page == "compare") {

			/* MERCH POPUP */
			$('a.seeitems').click(function() {
		
				$('#popup-merch').show();
				return false;
				
			});
	
			$('#popup-merch a.close').click(function() {
		
				$(this).parent('#popup-merch').hide();
				return false;
				
			});
			
			
			/* VIDEO UPSELL POPUP */
			$('a.watch').click(function() {
		
				$('#popup-video').show();
				var video_player = $('#popup-video div.flash div').attr('id');
				eval(video_player)();

				return false;
				
			});
	
			$('#popup-video a.close').click(function() {
		
				$('#popup-video div.flash div').empty();
				$('#popup-video').hide();
				return false;
				
			});
			
		}
		
	}
	

/* END LOAD FUNCTION
----------------------------------------------------------------------------- */


	});