// JavaScript Document
function mouseOn(id)
{
	var d=document.getElementById(id);
	d.style.backgroundImage="url(http://www.obituarieshelp.org/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";
	
}
