// Hide this code from non-JavaScript browsers

if (document.images) {

        baby_up = new Image();
        baby_up.src = "./grfx/babyb.gif";
        baby_down = new Image();
        baby_down.src = "./grfx/babyc.gif";
	baby_normal = new Image();
	baby_normal.src="./grfx/babya.gif";
	baby_hiLite=new Image();
	baby_hiLite.src="./grfx/babyb.gif";

        resume_up = new Image();
        resume_up.src = "./grfx/resumeb.gif";
        resume_down = new Image();
        resume_down.src = "./grfx/resumec.gif";
	resume_normal = new Image();
	resume_normal.src="./grfx/resumea.gif";
	resume_hiLite=new Image();
	resume_hiLite.src="./grfx/resumeb.gif";

        links_up = new Image();
        links_up.src = "./grfx/linksb.gif";
        links_down = new Image();
        links_down.src = "./grfx/linksc.gif";
	links_normal = new Image();
	links_normal.src="./grfx/linksa.gif";
	links_hiLite=new Image();
	links_hiLite.src="./grfx/linksb.gif";

        holiday_up = new Image();
        holiday_up.src = "./grfx/holidayb.gif";
        holiday_down = new Image();
        holiday_down.src = "./grfx/holidayc.gif";
	holiday_normal = new Image();
	holiday_normal.src="./grfx/holidaya.gif";
	holiday_hiLite=new Image();
	holiday_hiLite.src="./grfx/holidayb.gif";

        school_up = new Image();
        school_up.src = "./grfx/schoolb.gif";
        school_down = new Image();
        school_down.src = "./grfx/schoolc.gif";
	school_normal = new Image();
	school_normal.src="./grfx/schoola.gif";
	school_hiLite=new Image();
	school_hiLite.src="./grfx/schoolb.gif";

        timekill_up = new Image();
        timekill_up.src = "./grfx/timekillb.gif";
        timekill_down = new Image();
        timekill_down.src = "./grfx/timekillc.gif";
	timekill_normal = new Image();
	timekill_normal.src="./grfx/timekilla.gif";
	timekill_hiLite=new Image();
	timekill_hiLite.src="./grfx/timekillb.gif";

        faq_up = new Image();
        faq_up.src = "./grfx/faqb.gif";
        faq_down = new Image();
        faq_down.src = "./grfx/faqc.gif";
	faq_normal = new Image();
	faq_normal.src="./grfx/faqa.gif";
	faq_hiLite=new Image();
	faq_hiLite.src="./grfx/faqb.gif";

        soap_up = new Image();
        soap_up.src = "./grfx/soapb.gif";
        soap_down = new Image();
        soap_down.src = "./grfx/soapc.gif";
	soap_normal = new Image();
	soap_normal.src="./grfx/soapa.gif";
	soap_hiLite=new Image();
	soap_hiLite.src="./grfx/soapb.gif";

        home_up = new Image();
        home_up.src = "./grfx/homeb.gif";
        home_down = new Image();
        home_down.src = "./grfx/homec.gif";
	home_normal = new Image();
	home_normal.src="./grfx/homea.gif";
	home_hiLite=new Image();
	home_hiLite.src="./grfx/homeb.gif";


}


// Function to 'activate' images.
function imgOn(buttonName, imgName) {
        if (document.images) {
                document[imgName].src = eval(buttonName + "_down.src");
        }
}

// Function to 'deactivate' images.
function imgOff(buttonName, imgName) {
        if (document.images) {
                document[imgName].src = eval(buttonName + "_up.src");
        }
}

function hiLiteImage(normal, hiLite) {
	if (document.images) {
		document.images[normal].src=eval(hiLite+".src");
	}
}

// Stop hiding code from non-JavaScript browsers
