<!-- Begin
/*----------------------------------------------------------------------------------------
|
|        Light Blinker Functions Script by Josh Miller
|
-------------------------------------------------------------------------------------------*/ 
blinkLights()

function blinkLights(){
	document.write("<img style='position: absolute; top: 26px; left:158px;'  name='top1' src='uploads/Main/light1.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 24px; left:221px;'  name='top2' src='uploads/Main/light2.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 21px; left:273px;'  name='top3' src='uploads/Main/light3.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 23px; left:347px;'  name='top4' src='uploads/Main/light4.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 24px; left:413px;'  name='top5' src='uploads/Main/light5.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 27px; left:455px;'  name='top6' src='uploads/Main/light6.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 35px; left:532px;'  name='top7' src='uploads/Main/light7.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 33px; left:581px;'  name='top8' src='uploads/Main/light8.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 30px; left:652px;'  name='top9' src='uploads/Main/light9.jpg' border='0'>");
	document.write("<img style='position: absolute; top: 29px; left:715px;'  name='top10' src='uploads/Main/light10.jpg' border='0'>");
	setTimeout("updateBlink()",10);
}

function updateBlink(){
	blink=[Math.round(Math.random()*(9))]
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top1.src="uploads/Main/dot.gif"
	else
		document.top1.src="uploads/Main/light1.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top2.src="uploads/Main/dot.gif"
	else
		document.top2.src="uploads/Main/light2.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top3.src="uploads/Main/dot.gif"
	else
		document.top3.src="uploads/Main/light3.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top4.src="uploads/Main/dot.gif"
	else
		document.top4.src="uploads/Main/light4.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top5.src="uploads/Main/dot.gif"
	else
		document.top5.src="uploads/Main/light5.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top6.src="uploads/Main/dot.gif"
	else
		document.top6.src="uploads/Main/light6.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top7.src="uploads/Main/dot.gif"
	else
		document.top7.src="uploads/Main/light7.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top8.src="uploads/Main/dot.gif"
	else
		document.top8.src="uploads/Main/light8.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top9.src="uploads/Main/dot.gif"
	else
		document.top9.src="uploads/Main/light9.jpg"
	if (blink%2==[Math.round(Math.random()*(2))])
		document.top10.src="uploads/Main/dot.gif"
	else
		document.top10.src="uploads/Main/light10.jpg"
	setTimeout("updateBlink()",300);
}



//-->
