function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://www.ozhpv.org.au/images/frontpage01.jpg"
myimages[2]="http://www.ozhpv.org.au/images/frontpage02.jpg"
myimages[3]="http://www.ozhpv.org.au/images/frontpage03.jpg"
myimages[4]="http://www.ozhpv.org.au/images/frontpage04.jpg"
myimages[5]="http://www.ozhpv.org.au/images/frontpage05.jpg"
myimages[6]="http://www.ozhpv.org.au/images/frontpage06.jpg"
myimages[7]="http://www.ozhpv.org.au/images/frontpage07.jpg"
myimages[8]="http://www.ozhpv.org.au/images/frontpage08.jpg"
myimages[9]="http://www.ozhpv.org.au/images/frontpage09.jpg"
myimages[10]="http://www.ozhpv.org.au/images/frontpage10.jpg"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img class="center" src="'+myimages[ry]+'" border=0>')
}
random_imglink()

/*
Random Image Link Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
Updated: 00/04/25
*/