

countdownFrom = 0;



slideSpeed = 2000;

slideTimeout = 10000;







/* dont' edit anyting below here unless you're sure about what you're doinf  */





$(window).load(function () {

  	getStarted()

});



Cufon.replace('h1');

Cufon.replace('h2');



slidesPause = 0;



function getStarted(){

   	

   	if(countdownFrom > 0) {

   	

		cdown = setInterval(function(){

	

			if(countdownFrom == 0) {

			

				clearInterval(cdown);

			

				$('#rightCorner').click(function(){

					

					if(slidesPause == 0) {

						

						$('#slides').cycle('pause');

						$('#rightCorner').css("background", "url(/images/slideNavRight.gif) bottom no-repeat");

						slidesPause = 1;

						

					} else {

							

						$('#slides').cycle('resume');

						$('#rightCorner').css("background", "url(/images/slideNavRight.gif) top no-repeat");

						slidesPause = 0;

						

					}	

				});

			

				//hide beforeSlideshow

			

				$('#displayIn').animate({opacity:0}, 2000, function(){

				

					$('#displayIn').css("background", "url(/images/mainDisplayBG.jpg) no-repeat bottom");

				

					$('#beforeSlideshow').css("display", "none");

					$('#slideshow').css("display", "block");

				

					$('#displayIn').animate({opacity:1}, 3000);

				

					//configfure spacer element in slnavBG

				

					//activate slideshow

					$('#slides').cycle({ 

    					fx:     'scrollHorz',

    					speed:	slideSpeed,

    					timeout: slideTimeout, 

    					delay:  -2000,

    					next:   '#next', 

    					prev:   '#previous',

    					pager:  '#slnav',

    					easing: 'backinout'

   					});

   				

   					$('#slnavSpacer').css("width", 880 - (24*$('div#slides>div.slide').length));

				

					$('.slide').css("background", "none");

				})

			

			} else {

			

				countdownFrom = countdownFrom - 1;

			

				$('#count')[0].innerHTML = countdownFrom;

			

			}

	

		}, 1000);

	

	} else if(countdownFrom == -1) {

	

		$('#rightCorner').click(function(){

					

			if(slidesPause == 0) {

						

				$('#slides').cycle('pause');

				$('#rightCorner').css("background", "url(/images/slideNavRight.gif) bottom no-repeat");

				slidesPause = 1;

						

			} else {

							

				$('#slides').cycle('resume');

				$('#rightCorner').css("background", "url(/images/slideNavRight.gif) top no-repeat");

				slidesPause = 0;

						

			}	

		});

		

		$('#displayIn').css("background", "url(/images/mainDisplayBG.jpg) no-repeat bottom");

				

		$('#beforeSlideshow').css("display", "none");

		$('#slideshow').css("display", "block");

		

		//activate slideshow

		$('#slides').cycle({ 

    		fx:     'scrollHorz',

    		speed:	slideSpeed,

    		timeout: slideTimeout, 

    		delay:  -2000,

    		next:   '#next', 

    		prev:   '#previous',

    		pager:  '#slnav',

    		easing: 'backinout'

   		});

   				

   		$('#slnavSpacer').css("width", 880 - (24*$('div#slides>div.slide').length));

				

		$('.slide').css("background", "none");

	

	} else {

		

		$('#countdown').css("visibility", "hidden");

		

	}

}

