		var secs;
		var timerID = null;
		var timerRunning = false;
		var delay = 1000;
		
		function InitImages()
		{
			version=0;
			if (navigator.appVersion.indexOf("MSIE")!=-1)
			{
				temp=navigator.appVersion.split("MSIE");
				version=parseFloat(temp[1]);
			}

			if (version>=5.5)
			{
				secs = 10;
				document.all.f1.src='http://www.last.fm/music/Secret+Green/_/Prelude?autostart';
				StopTheClock();
				StartTheTimer();
				StartScrolling();
			}
		}
		
		function StopTheClock()
		{
			if (timerRunning)clearTimeout(timerID);
			timerRunning = false;
		}
		
		function StartTheTimer()
		{
			if (secs==0)
			{
				StopTheClock();document.all.f1.src='#';
			}
			else
			{
				secs = secs - 1;
				timerRunning = true;
				timerID = self.setTimeout("StartTheTimer()", delay);
			}
		}
		
		var msg = "J o b s  i n   B r o a d c a s t,  T V  a n d  M e d i a";
		var del = 100;
		var startPos = 100;
		var atimerID = null;
		var atimerRunning = false;
		var pos = 0;


		function StartScrolling()
		{
			StopScrolling();
			for (var i = 0; i < startPos; i++) msg = " " + msg;
			DoTheScroll();
		}

		function StopScrolling()
		{
			if (atimerRunning)
				clearTimeout(atimerID);
			atimerRunning = false;
		}

		function DoTheScroll()
		{
			if (pos < msg.length+1)
				self.status = msg.substring(pos, msg.length);
			else
			{
				StopScrolling();
				return;
			}
			++pos;
			atimerRunning = true;
			atimerID = self.setTimeout("DoTheScroll()", del);
		}		


