<!--

/*
Random Image Script- By JavaScript Kit (http://www.javascriptkit.com) 
Over 400+ free JavaScripts here!
Keep this notice intact please
*/

function random_imglink(){
var myeventimages=new Array()
//specify random images below. You can have as many as you wish
myeventimages[1]="EventsDiary1L.jpg"
myeventimages[2]="EventsDiary2L.jpg"
myeventimages[3]="EventsDiary3L.jpg"


var ry=Math.floor(Math.random()*myeventimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myeventimages[ry]+'" border=0 >')
}
random_imglink()
//-->