// <!--

function random_img(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="images/ImageBank/Cropped/WideAngle/1.jpg"
myimages[2]="images/ImageBank/Cropped/WideAngle/2.jpg"
myimages[3]="images/ImageBank/Cropped/WideAngle/3.jpg"
myimages[4]="images/ImageBank/Cropped/WideAngle/4.jpg"
myimages[5]="images/ImageBank/Cropped/WideAngle/5.jpg"
myimages[6]="images/ImageBank/Cropped/WideAngle/6.jpg"
myimages[7]="images/ImageBank/Cropped/WideAngle/7.jpg"
myimages[8]="images/ImageBank/Cropped/WideAngle/8.jpg"
myimages[9]="images/ImageBank/Cropped/WideAngle/9.jpg"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" border=0>')
}

// -->