
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
 var myimages=new Array()
 //specify random images below. You can have as many as you wish
 myimages[1]="pics/feature/r01.jpg"
 myimages[2]="pics/feature/r02.jpg"
 myimages[3]="pics/feature/r03.jpg"
 myimages[4]="pics/feature/r04.jpg"
 myimages[5]="pics/feature/r05.jpg"
 myimages[6]="pics/feature/r06.jpg"
 myimages[7]="pics/feature/r07.jpg"
 myimages[8]="pics/feature/r08.jpg"
 myimages[9]="pics/feature/r09.jpg"
 myimages[10]="pics/feature/r10.jpg"
 myimages[11]="pics/feature/r11.jpg"
 myimages[12]="pics/feature/r12.jpg"

 var ry=Math.floor(Math.random()*myimages.length)

 if (ry==0)
    ry=1
    document.write('<img src="'+myimages[ry]+'" border=0>')
}

 random_imglink()
//

