// JavaScript Document
startList = function() {
	
	function findPos(obj) {
    var curleft = 0;
    if (obj.offsetParent) {
        curleft = obj.offsetLeft
        while (obj = obj.offsetParent) {
            curleft += obj.offsetLeft
        }
    }
    return curleft;
	}

	
	var lastChild = $$("#mm li.nb")[$$("#mm li.nb").length-2];
	lastChild.className = "last_li"; 
	lastChild.id = "last_li";
	addWidth = findPos(document.getElementById("mm")) + 746 - findPos(document.getElementById("last_li"));
	lastChild.style.width = addWidth;
	document.getElementById("last_li").style.width = (addWidth + "px");
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("mm");
		var sz = 0;
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				sz = sz + node.offsetWidth;
				node.style.width=node.clientWidth;
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
var name = navigator.appName
if (true)
	window.onload=startList;
// End -->
