CbOS.NavBarTop=function(aEvent, aObj)
{
	with (CbOS)
	{
		var obj = get.eObj(aEvent);
		var cnt = obj.parentNode;
		if (obj != aObj && cnt != aObj && !obj.CbOSonmouseoverNAVBAR && cnt.firstChild.className.charAt(cnt.firstChild.className.length - 1) == "0")
		{
			var lnk = cnt.lastChild;
			SM.run.Event(lnk, lnk);
			SM.set.Event(
				SM.set.Event(
					[
						SM.set.Event(
							obj = cnt.firstChild,
							"onclick",
							"top.CbOS.run.Event(this.nextSibling, this.nextSibling, 'onclick')"
						),
						lnk
					],
					"onmouseover",
					"var o = this ; o.className=o.className.replace(/0$/,'2')",
					"NAVBAR"
				),
				"onmouseout",
				"var o = this; o.className=o.className.replace(/2$/,'0')"
			);
			run.Event(obj, obj, "onmouseover")
		}
	}
}
