//this is for the left image on the homepage.

function random_imglink(){
var myimages=new Array()
//add new image links here. make sure to increment the new images (7,8,9, etc.)
//make sure these images are EXACTLY 282W x 193H
myimages[1]="images/home_random/image1.jpg"
myimages[2]="images/home_random/image2.jpg"
myimages[3]="images/home_random/image3.jpg"
myimages[4]="images/home_random/image4.jpg"
myimages[5]="images/home_random/image5.jpg"
myimages[6]="images/home_random/image6.jpg"

 
//don't worry about anything below here. 
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" height=193 width=282 border=0 alt="Austin, Texas">')
}
random_imglink()
