/*---------------------------------------------------------*/
 /*---------------------------------------------------------*/
 //   Function:      adds javascript events to elements that simulate CSS actions that some older browsers do not support.
 //			  		 loadLocationMaps, mapLocationOn and mapLocationOff are all inter-related.
 //   Inputs:        none
 //   Returns:       n/a
 //   Author:        James Offer
 //   Usage example: use in onload on body - will automatically add javascript events to all required elements

function fixIECSS() {
	//if (document.all) {
	// we only require this for a non CSS2 compatible browser such as IE6
		/* disabled - was causing floating captions on maps not to come up
		var anchorList = document.getElementsByTagName("a");
		for (i=0;i<anchorList.length;i++) {
			if(anchorList[i].onmouseover==null) {
				anchorList[i].onmouseover=showLinkStatus;
				anchorList[i].onmouseout=showDoneStatus;
			}
				anchorList[i].parentNode.onmouseover=showLinkStatus;				
				anchorList[i].parentNode.onmouseout=showDoneStatus;
		}*/
	//}
}

function showLinkStatus() {
	if(this.href==null) {
		window.status = this.childNodes[0].href;
	} else {
		window.status = this.href;
	}
}

function showDoneStatus() {
	window.status = "Done";
}

 /*---------------------------------------------------------*/
 /*---------------------------------------------------------*/