
	// Cause the image on the movie screen to flicker every so often to varying degrees
	//var t1 = setInterval(function(){$("#imageplaceholder").animate({opacity:0.9},10).animate({opacity:1},10);},3000);
	//var t2 = setInterval(function(){$("#imageplaceholder").animate({opacity:0.8},10).animate({opacity:1},10);},5000);					
	//var t3 = setInterval(function(){$("#imageplaceholder").animate({opacity:0.5},10).animate({opacity:1},10);},8000);
	var t4 = setInterval(function(){var t = parseInt($("#sky").css("left")); t=t-1; if (t<-1070) t=0; $("#sky").css({"left":t}) }, 60 );
	

