<!--

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

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="img/sponsor-tmb-nwc.gif"
myimages[2]="img/sponsor-tmb-perimeter.gif"
myimages[3]="img/sponsor-tmb-mbgov.gif"
myimages[4]="img/sponsor-tmb-hydro.gif"
myimages[5]="img/sponsor-tmb-minisowin.gif"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.northwest.ca"
imagelinks[2]="http://www.perimeter.ca"
imagelinks[3]="http://www.gov.mb.ca"
imagelinks[4]="http://www.hydro.mb.ca"
imagelinks[5]="http://www.nhcn.ca/yorkboatdays/sponsors.html"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()
//-->