
function randomImg() {
	var thePics = new Array()
	var theTitle= new Array()
	var theLatin= new Array()

		thePics[1] = "/images/aqucan.jpg"
		theTitle[1] = "Columbine"
		theLatin[1] = "Aquilegia canadensis"
		thePics[2] = "/images/scicar.jpg"
		theTitle[2] = "Eastern Grey Squirrel"
		theLatin[2] = "Sciurus carolinensis"
		thePics[3] = "/images/asacan.jpg"
		theTitle[3] = "Wild Ginger"
		theLatin[3] = "Asarum canadense"
		thePics[4] = "/images/tamhud.jpg"
		theTitle[4] = "Red Squirrel"
		theLatin[4] = "Tamiasciurus hudsonicus"
		thePics[5] = "/images/trigra.jpg"
		theTitle[5] = "White Trillium"
		theLatin[5] = "Trillium grandiflorum"
		thePics[6] = "/images/clacar.jpg"
		theTitle[6] = "Spring Beauty"
		theLatin[6] = "Claytonia caroliniana"
		thePics[7] = "/images/poldom.jpg"
		theTitle[7] = "European Paper Wasp"
		theLatin[7] = "Polistes dominulus"
		thePics[8] = "/images/soldul.jpg"
		theTitle[8] = "Bittersweet Nightshade"
		theLatin[8] = "Solanum dulcamara"
		thePics[9] = "/images/erysim.jpg"
		theTitle[9] = "Eastern Pondhawk"
		theLatin[9] = "Erythemis simplicicollis"
		thePics[10] = "/images/eryame.jpg"
		theTitle[10] = "Trout Lily"
		theLatin[10] = "Erythronium americanum"
	var rn = Math.floor(Math.random() * thePics.length)
	if (rn == 0) {
	  rn = 1
	}


	

 
	document.write("<img src="+thePics[rn]+" width='150' height='180' border='0'/><br/>"+theTitle[rn]+"<br/>"+"<div class='latin'>"+theLatin[rn]+"</div>")

}
