<!--

//Countdown script by Mike Thompson
//http://www.members.tripod.com/webdesign123now/
//Based on script by Website Abstraction (http://wsabstract.com)

function random_imgsubs(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="/img/r-subs/00.jpg"
myimages[2]="/img/r-subs/01.jpg"
myimages[3]="/img/r-subs/02.jpg"
myimages[4]="/img/r-subs/03.jpg"
myimages[5]="/img/r-subs/04.jpg"
myimages[6]="/img/r-subs/05.jpg"
myimages[7]="/img/r-subs/06.jpg"
myimages[8]="/img/r-subs/07.jpg"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" border=0>')
}