
function navOn()
{
	document.getElementById('navcontainer').style.display = '';
	document.getElementById('title').style.background = 'url(http://www.rhilifts.com/images/nav_on_03.gif)';
}


function navOff()
{
   document.getElementById('navcontainer').style.display = 'none';
   document.getElementById('title').style.background = 'url(http://www.rhilifts.com/images/nav_03.gif)';

}


function navX()
{
   document.getElementById('navcontainer').style.display = 'none';
   document.getElementById('title').style.background = 'url(http://www.rhilifts.com/images/nav_on_03.gif)';

}

