// JavaScript Document

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="images/wil_bground_black.png"
myimages[2]="images/wil_bground2.png"
myimages[3]="images/wil_bground3.png"
myimages[4]="images/wil_bground4.png"
myimages[5]="images/wil_bground5.png"



var ry=Math.floor(Math.random()*myimages.length)
	if (document.body){
		if (ry==0)
			ry=1
			document.body.background=myimages[ry]
	}
}

