<!--
/*
Random Clickable Image + Text Script
April 2004
You can add new pictures and text by adding new lines that start with images[number]
and text[number]
*/
function random_imglinka(){
var images=new Array()
//specify random images below. You can have as many as you wish.
images[1]='<a href="/fimage.shtml?random/victoria1.jpg"><img src="/random/victoria1-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/victoria2.jpg"><img src="/random/victoria2-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/healthcentre.jpg"><img src="/random/healthcentre-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="Rothesay Victoria Hospital"
text[2]="Rothesay Victoria Hospital"
text[3]="Rothesay Health Centre"

var ry=Math.floor(Math.random()*images.length)
if (ry==0)
ry=1
document.write(images[ry]+'<BR>'+text[ry])
}
function random_imglinkb(){
var images=new Array()
//specify random images below. You can have as many as you wish.
images[1]='<a href="/fimage.shtml?random/rps.jpg"><img src="/random/rps-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/academy1.jpg"><img src="/random/academy1-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/academy2.jpg"><img src="/random/academy2-tb.jpg" border=0></a>'
images[4]='<a href="/fimage.shtml?random/standrewps.jpg"><img src="/random/standrewps-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="Rothesay Primary School"
text[2]="Rothesay Academy"
text[3]="Rothesay Academy"
text[4]="St Andrew's Primary School<br>Rothesay"
var ry=Math.floor(Math.random()*images.length)
if (ry==0)
ry=1
document.write(images[ry]+'<BR>'+text[ry])
}
function random_imglinkc(){
var images=new Array()
//specify random images below. You can have as many as you wish.
images[1]='<a href="/fimage.shtml?random/m_fire.jpg"><img src="/random/m_fire-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/police.jpg"><img src="/random/police-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/bikeparking.jpg"><img src="/random/bikeparking-tb.jpg" border=0></a>'
images[4]='<a href="/fimage.shtml?random/appletree3.jpg"><img src="/random/appletree3-tb.jpg" border=0></a>'
images[5]='<a href="/fimage.shtml?random/playground.jpg"><img src="/random/playground-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="Rothesay Fire Station"
text[2]="Rothesay Police Station<br>High St, Rothesay"
text[3]="Bicycle Parking<br>Rothesay Pier"
text[4]="The Appletree Nursery"
text[5]="Children's Playground<br>Townhead, Rothesay"
var ry=Math.floor(Math.random()*images.length)
if (ry==0)
ry=1
document.write(images[ry]+'<BR>'+text[ry])
}
function random_imglinkd(){
var images=new Array()
//specify random images below. You can have as many as you wish.
images[1]='<a href="/fimage.shtml?random/library2.jpg"><img src="/random/library2-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/libinternet.jpg"><img src="/random/libinternet-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/healthyliv.jpg"><img src="/random/healthyliv-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="Bute's well-resourced<br>Public Library"
text[2]="Public Internet Access<br>in Rothesay Library"
text[3]="Community Resource Centre<br>& Bute Healthy Living H.Q."
var ry=Math.floor(Math.random()*images.length)
if (ry==0)
ry=1
document.write(images[ry]+'<BR>'+text[ry])
}
//-->
//-->
