var currCol = 'white';
function MouseOut( ctrl )
{
	ctrl.style.color = currCol;
}
function MouseOver( ctrl )
{
	currCol = ctrl.style.color;
	if ( currCol == 'white' )
		return;
	ctrl.style.color = 'olive';
}