<!--
	// the section variable is set in the page2html xsl sheet
	var mainLinks = new Array ("records", "publications", "tracks", "concerts", "images")
	
	function load() {
 		if (document.getElementById(section + "Pointer")) {
		   	document.getElementById(section + "Pointer").src = rootpath + "images/menu/downred.gif";
		}
	}
    function PointRed(tag) {
    	if (section != tag.id) {
	    	document.getElementById(tag.id + "Pointer").src = rootpath + "images/menu/downred.gif";
			if (document.getElementById(section + "Pointer"))
		    	document.getElementById(section + "Pointer").src = rootpath + "images/menu/downgrey.gif";
		}
	}
	
	function PointOff(tag) {
    	if (section != tag.id) {
			document.getElementById(tag.id + "Pointer").src = rootpath + "images/menu/space.gif";
			if (document.getElementById(section + "Pointer"))
			   	document.getElementById(section + "Pointer").src = rootpath + "images/menu/downred.gif";
 		}
	}
// -->
