<!--//
if (document.images) {		
		homeon = new Image(); homeon.src = "/images/menu/home02.gif";
		homeoff = new Image(); homeoff.src = "/images/menu/home01.gif";
		
		serviceson = new Image(); serviceson.src = "/images/menu/services02.gif";
		servicesoff = new Image(); servicesoff.src = "/images/menu/services01.gif";
		
		researchon = new Image(); researchon.src = "/images/menu/research02.gif";
		researchoff = new Image(); researchoff.src = "/images/menu/research01.gif";
		
		headstoneson = new Image(); headstoneson.src = "/images/menu/headstones02.gif";
		headstonesoff = new Image(); headstonesoff.src = "/images/menu/headstones01.gif";
		
		flowerson = new Image(); flowerson.src = "/images/menu/flowers02.gif";
		flowersoff = new Image(); flowersoff.src = "/images/menu/flowers01.gif";
		
		familyon = new Image(); familyon.src = "/images/menu/family02.gif";
		familyoff = new Image(); familyoff.src = "/images/menu/family01.gif";
		
		poetryon = new Image(); poetryon.src = "/images/menu/poetry02.gif";
		poetryoff = new Image(); poetryoff.src = "/images/menu/poetry01.gif";

		linkson = new Image(); linkson.src = "/images/menu/links02.gif";
		linksoff = new Image(); linksoff.src = "/images/menu/links01.gif";
		
		contacton = new Image(); contacton.src = "/images/menu/contact02.gif";
		contactoff = new Image(); contactoff.src = "/images/menu/contact01.gif";
}

function act(imgName){
	if (document.images)  document[imgName].src = eval(imgName + 'on.src')	
}

function inact(imgName) {
	if (document.images)  document[imgName].src = eval(imgName + 'off.src')
}

// Message in the statusbar
 
function stat(msg) {
        document.returnValue = false;
        if (document.images) {
                window.status = msg;
                document.returnValue = true;
        }
}
//-->