function initPage() {
	var _menu = document.getElementById("list-round");
	if (_menu) {
		var _links = _menu.getElementsByTagName("a");
		
		for (i = 0; i < _links.length; i ++)
		{
			if (_links[i].parentNode.className.indexOf("active") != -1)
			{
				_menu.className = _links[i].className;
				_menu._active = _menu.className;
			}
			_links[i].onmouseover = function() {
				_menu.className = this.className;
			}
			_menu.onmouseout = function() {
				if (this._active)
				{
					this.className = this._active;
				}
				else
				{
					this.className = "";
				}
			}
		}
	}
}
if (window.addEventListener)	{
	window.addEventListener("load", initPage, false);
}
else if (window.attachEvent) {
	window.attachEvent("onload", initPage);
}