function random_image(){
var sampler_images=new Array()
//specify random images below. You can have as many as you wish
sampler_images[1]="images/sampler_fishing_big2.jpg"
sampler_images[2]="images/sampler_fishing_big3.jpg"
sampler_images[3]="images/sampler_fishing_big4.jpg"
sampler_images[4]="images/sampler_fishing_big5.jpg"
sampler_images[5]="images/sampler_fishing_big6.jpg"

var n_mixed=Math.floor(Math.random()*sampler_images.length)
if (n_mixed==0)
n_mixed=1
document.write('<img src="'+sampler_images[n_mixed]+'" name="sampler_fishing" width=188 height=135 hspace=0 vspace=0 border=0 alt="">')
}
random_image()
