<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '/gifs/feat_halifax.gif'
theImages[1] = '/gifs/feat-dart.gif'
theImages[2] = '/gifs/feat-bedford.gif'
theImages[3] = '/gifs/feat-cbreton.gif'
theImages[4] = '/gifs/feat-eshore.gif'
theImages[5] = '/gifs/feat-musq.gif'
theImages[6] = '/gifs/feat-prospect.gif'
theImages[7] = '/gifs/feat-waverley.gif'

var theImages2 = new Array()
 
theImages2[0] = '/gifs/feat_halifax_high.gif'
theImages2[1] = '/gifs/feat-dart_high.gif'
theImages2[2] = '/gifs/feat-bedford_high.gif'
theImages2[3] = '/gifs/feat-cbreton_high.gif'
theImages2[4] = '/gifs/feat-eshore_high.gif'
theImages2[5] = '/gifs/feat-musq_high.gif'
theImages2[6] = '/gifs/feat-prospect_high.gif'
theImages2[7] = '/gifs/feat-waverley_high.gif'

var theComm = new Array()

theComm[0] = '104'
theComm[1] = '105'
theComm[2] = '106'
theComm[3] = '107'
theComm[4] = '108'
theComm[5] = '109'
theComm[6] = '110'
theComm[7] = '111'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a href=/list/'+theComm[whichImage]+' onMouseOut=MM_swapImgRestore() onMouseOver=MM_swapImage("featured_community","","'+theImages2[whichImage]+'",1)><img name=featured_community src="'+theImages[whichImage]+'"></a>');
}

//  End -->
