// JavaScript Documentvar hrefToImgId; var filename;function setDefaultHighlight () {  hrefToImgId = new Object;  hrefToImgId['news.htm'] = 'news';  hrefToImgId['contact.htm'] = 'contact';  hrefToImgId['links.htm'] = 'links';  hrefToImgId['artwork.htm'] = 'artwork';  hrefToImgId['bands.htm'] = 'bands';  hrefToImgId['comics.htm'] = 'comics';  hrefToImgId['shows.htm'] = 'shows';  hrefToImgId['music.htm'] = 'music';  var href = location.href;  filename = href.substring(href.lastIndexOf('/') + 1);    if (filename == '') {    filename = 'index.htm';  }    var img = document.getElementById(hrefToImgId[filename]);  img.src = "images/button" + hrefToImgId[filename] + "on.png";} // setDefaultHighlightfunction swapImage (imgId, newImage) {    if (imgId != hrefToImgId[filename]) {    var img = document.getElementById(imgId);    img.src = newImage;  }}