function menuChange(){
	var oD = document.getElementById("menuDt").getElementsByTagName("li");
	for (var i = 0; i < oD.length; i++){
		oD[i].onmouseover = function(){this.className += (this.className.length > 0 ? " " : "") + "sel";};
		oD[i].onmouseout= function(){this.className = this.className.replace(new RegExp("( ?|^)sel\\b"), "");};
	}
	
}
//window.onload=menuChange;

function tabit(btn) {
    var oD = btn.parentNode.getElementsByTagName("li");
    for (i = 0; i < oD.length; i++) {
		document.getElementById(oD[i].id + "Sel").style.display = "none";
		oD[i].className=oD[i].className.replace(new RegExp("( ?|^)sel\\b"), "");
    }
    document.getElementById(btn.id + "Sel").style.display = "block";
    btn.className += (btn.className.length > 0 ? " " : "") + "sel";
}
