<!--    
    var base="images/"
    
    if (document.images) 
    {
	imgHomeOn = new Image();		imgHomeOn.src = base + "btnHomeON.gif";
	imgAboutUsOn = new Image();		imgAboutUsOn.src = base + "btnAboutUsON.gif";
	imgAreaOn = new Image();		imgAreaOn.src = base + "btnAreaON.gif";
	imgPlaygroupsOn = new Image();		imgPlaygroupsOn.src = base + "btnPlaygroupsON.gif";
	imgLinksOn = new Image();		imgLinksOn.src = base + "btnLinksON.gif";
	imgHumorOn = new Image();		imgHumorOn.src = base + "btnHumorON.gif";
	imgTestimonialsOn = new Image();	imgTestimonialsOn.src = base + "btnTestimonialsON.gif";
	imgParkOn = new Image();		imgParkOn.src = base + "btnParkON.gif";
	imgVolunteerOn = new Image();		imgVolunteerOn.src = base + "btnVolunteerON.gif";
	imgBusinessOn = new Image();		imgBusinessOn.src = base + "btnMomsInBusinessON.gif";
	imgGalleryOn = new Image();		imgGalleryOn.src = base + "btnGalleryON.gif";
	imgContactUsOn = new Image();		imgContactUsOn.src = base + "btnContactUsON.gif";
	
	imgHomeOff = new Image();		imgHomeOff.src = base + "btnHome.gif";
	imgAboutUsOff = new Image();		imgAboutUsOff.src = base + "btnAboutUs.gif";
	imgAreaOff = new Image();		imgAreaOff.src = base + "btnArea.gif";
	imgPlaygroupsOff = new Image();		imgPlaygroupsOff.src = base + "btnPlaygroups.gif";
	imgLinksOff = new Image();		imgLinksOff.src = base + "btnLinks.gif";
	imgHumorOff = new Image();		imgHumorOff.src = base + "btnHumor.gif";
	imgTestimonialsOff = new Image();	imgTestimonialsOff.src = base + "btnTestimonials.gif";
	imgParkOff = new Image();		imgParkOff.src = base + "btnPark.gif";
	imgVolunteerOff = new Image();		imgVolunteerOff.src = base + "btnVolunteer.gif";
	imgBusinessOff = new Image();		imgBusinessOff.src = base + "btnMomsInBusiness.gif";
	imgGalleryOff = new Image();		imgGalleryOff.src = base + "btnGallery.gif";
	imgContactUsOff = new Image();		imgContactUsOff.src = base + "btnContactUs.gif";
    }
        
    function imgOn(imgName) 
    {
	if (document.images) 
	{
		document[imgName].src = eval(imgName + "On.src");
        }
    }

    function imgOff(imgName) 
    {
    	if (document.images) 
	{
            document[imgName].src = eval(imgName + "Off.src");
        }
    }

// -->    
