$(document).ready(function(){
    $('.pressElement a.image').fancybox();
    $('.pressElement a.video').fancybox({'type':'swf','width':384,'height':328});

    $('#scrollSection_nav_nxt').bind('click',function(){
	if(currentPage < maxPage) {
	    $('#pressElement_'+currentPage).fadeOut('slow',function(){		// fade out the current page
		currentPage++;							// increment the current page number
		$('#pressElement_'+currentPage).fadeIn('slow');			// fade in the new page

		$('#scrollSection_nav_prv').removeClass('disabled');		// enable the previous button

		if(currentPage == maxPage) {					// disable the next button if we get to the end
		    $('#scrollSection_nav_nxt').addClass('disabled');
		}
	    });
	}
	
	return false;
    });

    $('#scrollSection_nav_prv').bind('click',function(){
	if(currentPage > 0) {
	    $('#pressElement_'+currentPage).fadeOut('slow',function(){		// fade out the current page
		currentPage--;							// increment the current page number
		$('#pressElement_'+currentPage).fadeIn('slow');			// fade in the new page

		$('#scrollSection_nav_nxt').removeClass('disabled');		// enable the next button

		if(currentPage == 0) {						// disable the next button if we get to the end
		    $('#scrollSection_nav_prv').addClass('disabled');
		}
	    });
	}

	return false;
    });
});

// use window.load rather than document.ready so that we ensure the images are loaded before the animation starts
$(window).load(function(){
	// start the animation after a short delay
	setTimeout("animate()",1000);
});


// animate the logo sign
function animate() {
	var spd = 1500;
	
	// show the coming soon logo
	$('#comingSoon_coverVoting').fadeIn('slow');
	
	// show the main logo and scroll
	$('#theMaggies_logo').animate({"top": "0"}, spd, "swing");
	$('#scroll').animate({"top": "80px"}, spd, "swing", function(){
		// add some glitter to the scroll
		$('#stage-front').addSparkleGroup(501,116,4,220,50);
		
		// move the first section across
		$('#pollResults_holder').animate({"left": "0"}, spd, "swing",function(){
			// show the nav
			$('#pollResults_nav').fadeIn('slow');
		});
	});
};

