function navmouseover( o, cls ) 
{
	o.className = cls;
	// o.style.cssText+='; background-color: rgb(255, 153, 51) ; ';
	// o.firstChild.style.color='rgb(255, 255, 255) ';
}

function navmouseout( o, cls )
{
	o.className = cls;
	// o.style.cssText+='; background-color: rgb(0, 51, 153) ; ';
	// o.firstChild.style.color='rgb(255, 255, 255) ';
}

function navclick( o )
{
	if( o.firstChild.target != '_blank' )
		location.href = o.firstChild.href;
}

