// -------------------------------------------------------------------------------------
// File				:	bcb.js
// Author			:	Gareth Jones (garjones@microsoft.com)
// Purpose			:	DHTML functionality for Brampton Concert Band
// Last Updated		:	1st August 2002
// -------------------------------------------------------------------------------------
// Copyright (C) 2002 Clickwork Productions Limited. All rights reserved.
// -------------------------------------------------------------------------------------

window.onload=findUs;

function doLink(text,alink) {
	if(document.getElementById){
		document.write("<tr><td width=\"100%\"><div class=\"LeftNav\" lang=\""+alink+"\">"+text+"</div></td></tr>");
	}else if(document.all){
		document.write("<tr><td width=\"100%\"><div class=\"LeftNav\" lang=\""+alink+"\">"+text+"</div></td></tr>");
	}else{
		document.write("<tr><td width=\"100%\" class=\"LeftNav\"><a href=\""+alink+"\">"+text+"</a></td></tr>")
	}
	document.write("<tr><td bgcolor=\"#707070\" width=\"100%\" height=\"1\"><img src=\"images/invisible.gif\" height=\"1\" width=\"1\"></td></tr>");

}

function findUs(){
	if(document.getElementById){
		var divs = document.getElementsByTagName('DIV')
		for(i=0;i < divs.length;i++){
			if (divs[i].className == 'LeftNav'){
				divs[i].onmouseover = function () {meOn(this)}
				divs[i].onmouseout = function () {meOff(this)}
				divs[i].onclick = function (){document.location.href=this.lang}
			}
		}
	}
}

function meOn(div){
	div.style.backgroundColor='#FFA000';
	self.status=div.lang;
}

function meOff(div){
	div.style.backgroundColor='transparent';
}
