<!--

	var sDecoration = ' &lt;';
	
	function onMenuOver( oItem )
	{
		if( oItem.innerHTML.indexOf( sDecoration ) == -1 )
			oItem.innerHTML = oItem.innerHTML + sDecoration;
	}
	
	function onMenuOut( oItem )
	{
		oItem.innerHTML = oItem.innerHTML.replace( sDecoration, '' );
	}
//-->