// JavaScript Document


function random_quote(){
var quoteimg=new Array()
//image links
quoteimg[1]="images/quotes/quote01.jpg"
quoteimg[2]="images/quotes/quote02.jpg"
quoteimg[3]="images/quotes/quote03.jpg"
quoteimg[4]="images/quotes/quote04.jpg"
quoteimg[5]="images/quotes/quote05.jpg"
quoteimg[6]="images/quotes/quote06.jpg"
quoteimg[7]="images/quotes/quote07.jpg"
quoteimg[8]="images/quotes/quote08.jpg"

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





//-->
