    
    var navifolder = "../images.two.state/"; 
    
    var activelifebuttonslo = new Array(activelifeimages.length);
    var activelifebuttonshi = new Array(activelifeimages.length);

	for (i = 0;  i < activelifeimages.length;  i++) {
		activelifebuttonslo[activelifeimages[i]] = new Image();
		activelifebuttonslo[activelifeimages[i]].src = navifolder + activelifeimages[i] + "lo.png";
		activelifebuttonshi[activelifeimages[i]] = new Image();
		activelifebuttonshi[activelifeimages[i]].src = navifolder + activelifeimages[i] + "hi.png";
	}
    
    function activelifebuttonhi(name) {
        document.images[name].src = activelifebuttonshi[name].src;
        return true;
    }
    function activelifebuttonlo(name) {
        document.images[name].src = activelifebuttonslo[name].src;
        return true;
    }



          
