// JavaScript Document<!--This script for image swapping was written by GEOFF HING - www.terrorware.com - and you can use it if you want-->var hrefToImgId; var filename;function setDefaultHighlight () {  hrefToImgId = new Object;  hrefToImgId['comics.htm'] = 'comics';  hrefToImgId['illustrations.htm'] = 'illustrations';  hrefToImgId['about.htm'] = 'about';  var href = location.href;  filename = href.substring(href.lastIndexOf('/') + 1);    if (filename == '') {    filename = 'index.htm';  }    var img = document.getElementById(hrefToImgId[filename]);  img.src = "images/" + hrefToImgId[filename] + "on.png";} // setDefaultHighlightfunction swapImage (imgId, newImage) {    if (imgId != hrefToImgId[filename]) {    var img = document.getElementById(imgId);    img.src = newImage;  }}