<!--

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

function random_imgquotes(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="/connected/img/r-quotes/00.jpg"
myimages[2]="/connected/img/r-quotes/01.jpg"
myimages[3]="/connected/img/r-quotes/02.jpg"
myimages[4]="/connected/img/r-quotes/03.jpg"

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