function mouseOverNav(theElement)
{
	if (theElement.className != 'navsectioncurrent')
	{
		var theSubElement = theElement.getElementsByTagName("div")[0];
		
		theElement.style.background = "url(../images/bg-navsection-hover.gif) no-repeat bottom left";
		theSubElement.style.background = "url(../images/bg-navsectionbody-hover.gif) no-repeat top left";
	}
}

function mouseOutNav(theElement)
{
	if (theElement.className != 'navsectioncurrent')
	{
		var theSubElement = theElement.getElementsByTagName("div")[0];
		
		theElement.style.background = "#910000";
		theSubElement.style.background = "#910000";
	}
}
