<!--
// Hand crafted with love by Kurtis Lininger
// copyright 2005 Kurtis Lininger
// www.bykurt.com
   
var strNames="";
var imgLinks=new Array();

NewImg("home");
NewImg("chiro");
NewImg("mther");
NewImg("about");
NewImg("news");
NewImg("galry");
NewImg("hours");
NewImg("cont");

function NewImg(ImgID) {
    strNames+=(ImgID+"    ").substr(0,5);
    ImgIdx=Math.floor(strNames.length/5)*2-2;
    imgLinks[ImgIdx]=new Image;
    if (strLocation==ImgID) {
        imgLinks[ImgIdx].src="/img/link_"+ImgID+"_here.jpg";
    } else {
        imgLinks[ImgIdx].src="/img/link_"+ImgID+"_norm.jpg";
    }
    ImgIdx+=1
    imgLinks[ImgIdx]=new Image;
    if (strLocation==ImgID) {
        imgLinks[ImgIdx].src="/img/link_"+ImgID+"_here.jpg";
    } else {
        imgLinks[ImgIdx].src="/img/link_"+ImgID+"_hilite.jpg";
    }
}
function HON(ImgID) {ImgIdx=Math.floor(strNames.indexOf(ImgID)/5)*2+1;document.images[ImgID].src=imgLinks[ImgIdx].src}
function HOFF(ImgID){ImgIdx=Math.floor(strNames.indexOf(ImgID)/5)*2  ;document.images[ImgID].src=imgLinks[ImgIdx].src}
//-->
