$(document).ready(function(){
    $('#scrollBox_holder_theMaggies').scrollSection();
    $('#scrollBox_nav a').bind('click',function(e){
	if($('#scrollBox_holder_theMaggies').attr('currentSection') == 3) {
	    $('#video_rayOfSunshine').flash({
		src: '/images/Maggies.swf',
		height: 120,
		width: 132,
		wmode: 'transparent'
	    });
	    $('#video_rayOfSunshine').delay(1500).fadeIn('slow');
	} else {
	    $('#video_rayOfSunshine').fadeOut('fast');
	    $('#video_rayOfSunshine').empty();
	}
    });
});

// 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);
    });
};
