// JavaScript Document
function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[0]="slideshow/photogroup.jpg"

myimages.sort(function() {return 0.5 - Math.random();});
document.write('<img id="rand" onload="fade(this, \'in\', 100, 2, 30);" src="'+myimages[0]+'" border=0></a>')
}

random_imglink()