// JavaScript Document
var theQuotes = new Array()
var thePics = new Array()
var numofPics = 7
var counter = 0

while (counter <= numofPics)
{
	thePics[counter] = "pics/index" + counter + ".jpg"
	counter++;
}

counter = 0

// generate null quotes for all images, just in case
while (counter <= numofPics)
{
	theQuotes[counter] = ""
	counter++;
}

theQuotes[0] = "Mandala Yoga"
theQuotes[1] = "Mandala Yoga"
theQuotes[2] = "Mandala Yoga"
theQuotes[3] = "Mandala Yoga"
theQuotes[4] = "Mandala Yoga"
theQuotes[5] = "Mandala Yoga"
theQuotes[6] = "Mandala Yoga"
theQuotes[7] = "Mandala Yoga"

var rn = Math.round(Math.random() * (thePics.length - 1))

document.write("<img alt='Mandala Yoga - Peru' src='"+thePics[rn]+"' BORDER=1></a>")
document.write("<br>")
document.write('<div align="center"><font color="#990000" size="-2" face="Verdana, Arial, Helvetica, sans-serif">'+theQuotes[rn]+'</font></div>')