<!-- Begin hiding script from older browsers

var theImages = new Array()
theImages[0] = 'http://www.gogaspe.com/banners/lebout.gif'
theImages[1] = 'http://www.gogaspe.com/banners/toyhon.jpg'
theImages[2] = 'http://www.gogaspe.com/banners/indian.jpg'
theImages[3] = 'http://www.gogaspe.com/banners/yourad.gif'
theImages[4] = 'http://www.gogaspe.com/banners/cassidy.gif'
theImages[5] = 'http://www.gogaspe.com/banners/kega.gif'
theImages[6] = 'http://www.gogaspe.com/banners/rpmicro.gif'
theImages[7] = 'http://www.gogaspe.com/banners/cglogo.gif'
theImages[8] = 'http://www.gogaspe.com/banners/art.jpg'
theImages[9] = 'http://www.gogaspe.com/banners/wakeham.jpg'
theImages[10] = 'http://www.gogaspe.com/banners/quesport.jpg'
theImages[11] = 'http://www.gogaspe.com/banners/spec.gif'

var theLinks = new Array()
theLinks[0] = 'www.votrecourtier.com'
theLinks[1] = 'www.gaspe-toyhon.com'
theLinks[2] = 'www.gogaspe.com/misc/indian/sitedesc.htm'
theLinks[3] = 'www.gogaspe.com/misc/ad.htm'
theLinks[4] = 'www.gogaspe.com/photocassidy'
theLinks[5] = 'www.gogaspe.com/host/kega/kega.html'
theLinks[6] = 'www.gogaspe.com/ron/rpmicro.htm'
theLinks[7] = 'www.campinggaspe.ca'
theLinks[8] = 'lindadrody.com'
theLinks[9] = 'www.maisonwakeham.ca'
theLinks[10] = 'www.quebecsporting.com/'
theLinks[11] = 'www.gaspespec.com/'

var numads = theImages.length
var thisAd = Math.floor(Math.random()*(numads));

function rotate() {
  if (document.images) {
    if (document.cycle.complete) {
	  thisAd++
	  if (thisAd == numads) {
	    thisAd = 0
	  }
	 document.cycle.src = theImages[thisAd];
	}

// This sets the interval to which the images are rotated. 1000 equals 1 second
	setTimeout("rotate()", 10000)
  }
}

//To open the ad in the same window use the command below
//function rotateLink() { window.parent.location.href = "http://" + theLinks[thisAd] }


// Opens site in a new window
function rotateLink() { window.open("http://" + theLinks[thisAd]) }


function showImage() {
document.write('<a href="javascript:rotateLink();"><img src="http://www.gogaspe.com/banners/yourad.gif" width="126" height="60" hspace="0" border="0" name="cycle"></a>')
}
// End hiding script from older browsers -->


