// JavaScript Document

function random_imglink(){
 var myimages=new Array()
 //specify random images below. You can have as many as you wish
 myimages[1]="splashes/1.png"
 myimages[2]="splashes/2.png"
 myimages[3]="splashes/3.png"
 myimages[4]="splashes/4.png"
 myimages[5]="splashes/5.png"
 myimages[6]="splashes/6.png"

 var ry=Math.floor(Math.random()*myimages.length)

 if (ry==0)
    ry=1
    document.write('<div style="width:1050px; height:600px; background-image:url('+myimages[ry]+'); background-repeat:no-repeat; background-position:right;">')
}

//<div style="width:1100px; height:600px; background-image:url('splashes/6.png'); background-repeat:no-repeat; background-position:right;">

//  End -->

