// JavaScript Document
function mouseOn(id)
{
	var d=document.getElementById(id);
	d.style.backgroundImage="url(images/navigation-bar-rollover_obituaries.jpg)";
	d.style.backgroundPosition="48% 100%";
	d.style.backgroundRepeat="no-repeat";
}

function mouseOff(id)
{
	var d=document.getElementById(id);
	d.style.backgroundImage="none";
	
}

function showup(id)
{
	var ex=document.getElementById(id);
	ex.style.display="block";


}

function shutdown(id)
{
	var ex=document.getElementById(id);
	ex.style.display="none";


}