// cycle through bus images 
	var busImages = new Array("../images/busses-sml/bus1.jpg","../images/busses-sml/bus2.jpg","../images/busses-sml/bus3.jpg","../images/busses-sml/bus4.jpg","../images/busses-sml/bus5.jpg","../images/busses-sml/bus6.jpg","../images/busses-sml/bus7.jpg","../images/busses-sml/bus8.jpg")
	var thisBusAd = 0
	function cycleBus() {
		if (document.images) {
			if (document.busBanner.complete) {
				thisBusAd++
				if (thisBusAd == 8) {
					thisBusAd = 0
				}
				document.busBanner.src=busImages[thisBusAd]
			}
		  	setTimeout("cycleBus()", 6 * 1000)
		}
	}

// open the send to a freind window
var  sendfriendWindow;
function sendfriend(){
		if (sendfriendWindow && !sendfriendWindow.closed){		  // Checks to see if a window is already open
			sendfriendWindow.close();
			sendfriendWindow =  window.open('http://www.buscouncil.ca/php/sendfriend/cert-friend.php?referURL='+self.location.href,'','width=500,height=450,scrollbars=1,noresize');
		}else{
			sendfriendWindow =  window.open('http://www.buscouncil.ca/php/sendfriend/cert-friend.php?referURL='+self.location.href,'','width=500,height=450,scrollbars=1,noresize');
		}
}	

var feeWindow;
function openFeeWindow(){
		if (feeWindow && !feeWindow.closed){		  // Checks to see if a window is already open
			feeWindow.close();
			feeWindow =  window.open('http://www.buscouncil.ca/certification/content/fee-structure.php','','width=500,height=350,scrollbars=1,noresize');
		}else{
			feeWindow =  window.open('http://www.buscouncil.ca/certification/content/fee-structure.php','','width=500,height=350,scrollbars=1,noresize');
		}
}	