/////////////////////////////////////////////////////////////
// Javascript for roundpeg.com Navigation Indicator
// 11.03.08 :: Toivo Betancourt :: t7scoop@gmail.com 
// ---------------------------------------------------------
// Description:  On mouesover the following functions are 
// executed to change the nav-indicator image of the 
// "nav-indicator" div, to it's appropriate selector state.
/////////////////////////////////////////////////////////////

var currentNavIndicatorHTML;

function navIndicate(imgId)
{
	currentNavIndicatorHTML = $("nav-indicator").innerHTML;
	$("nav-indicator").update("<img src='/images/nav_indicator" + imgId + ".gif'>");
}

function navReset()
{ 
	$("nav-indicator").update(currentNavIndicatorHTML);
}
