function random_imglink(){
var myimages=new Array()
myimages[1]="images/landing_welcome01.gif"
myimages[2]="images/landing_welcome02.gif"
myimages[3]="images/landing_welcome03.gif"
myimages[4]="images/landing_welcome04.gif"
myimages[5]="images/landing_welcome05.gif"
myimages[6]="images/landing_welcome06.gif"
myimages[7]="images/landing_welcome07.gif"
myimages[8]="images/landing_welcome08.gif"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" border=0>')
}
random_imglink()
