<!--
/*
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_imglinkb(){
var images=new Array()
//specify random images below. You can have as many as you wish.
images[1]='<a href="/fimage.shtml?random/businesspark.jpg"><img src="/random/businesspark-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/businesspark2.jpg"><img src="/random/businesspark2-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/businesspark3.jpg"><img src="/random/businesspark3-tb.jpg" border=0></a>'
images[4]='<a href="/fimage.shtml?random/b_park1.jpg"><img src="/random/b_park1-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="Bute Business Park"
text[2]="Bute Business Park"
text[3]="Bute Business Park"
text[4]="Bute Business Park Units"
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/b_butefabrics.jpg"><img src="/random/b_butefabrics-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/b_flextech.jpg"><img src="/random/b_flextech-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/b_creamery1.jpg"><img src="/random/b_creamery1-tb.jpg" border=0></a>'
images[4]='<a href="/fimage.shtml?random/b_creamery2.jpg"><img src="/random/b_creamery2-tb.jpg" border=0></a>'
images[5]='<a href="/fimage.shtml?random/b_tsc.jpg"><img src="/random/b_tsc-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="Bute Fabrics manufactures<br>quality textiles"
text[2]="Flexible Technology"
text[3]="Rothesay Creamery manufactures<br>renowned Bute Cheddar cheese"
text[4]="Rothesay Creamery processes<br>locally produced milk<br>into Bute Cheddar"
text[5]="TSC Call Centre<br>a major employer on Bute"
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/b_tourism.jpg"><img src="/random/b_tourism-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/b_sheep.jpg"><img src="/random/b_sheep-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/b_fishing.jpg"><img src="/random/b_fishing-tb.jpg" border=0></a>'
images[4]='<a href="/fimage.shtml?random/b_dairying.jpg"><img src="/random/b_dairying-tb.jpg" border=0></a>'
images[5]='<a href="/fimage.shtml?random/b_herd.jpg"><img src="/random/b_herd-tb.jpg" border=0></a>'
images[6]='<a href="/fimage.shtml?random/b_farmech.jpg"><img src="/random/b_farmech-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="Tourism<br>a major pillar<br>of Bute's economy"
text[2]="Sheep farming<br>important to Bute's economy"
text[3]="Fishing<br>important local industry"
text[4]="Dairying<br>an important contributor<br>to Bute's economy"
text[5]="Dairy herd<br>Ettrick Bay"
text[6]="Farm mechanization on Bute"
var ry=Math.floor(Math.random()*images.length)
if (ry==0)
ry=1
document.write(images[ry]+'<BR>'+text[ry])
}
function random_imglinke(){
var images=new Array()
//specify random images below. You can have as many as you wish.
images[1]='<a href="/fimage.shtml?random/sawmill.jpg"><img src="/random/sawmill-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?random/cargoes.jpg"><img src="/random/cargoes-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?random/fishing.jpg"><img src="/random/fishing-tb.jpg" border=0></a>'
images[4]='<a href="/fimage.shtml?random/construction.jpg"><img src="/random/construction-tb.jpg" border=0></a>'
//specify corresponding text below
var text=new Array()
text[1]="One of several sawmills<br>on Bute &copy;Zak"
text[2]="Large cargoes can be handled<br>in Rothesay Bay &copy;Zak"
text[3]="Fishing provides employment<br>and adds colour to Rothesay"
text[4]="Construction an important provider<br>of employment opportunities &copy;Zak"

var ry=Math.floor(Math.random()*images.length)
if (ry==0)
ry=1
document.write(images[ry]+'<BR>'+text[ry])
}
//-->
