SC.activateMenu = function(sId) {
	//if (document.all && document.getElementById(sId).currentStyle) {
		var oObj = SC.getObj(sId);
		var aLiList = SC.getTagArray("li",oObj);
		for (var i=0; i<aLiList.length; i++) {
			aLiList[i].onmouseover=function(){
				if(this.className != "" && this.className.indexOf("schover") == -1 )
					this.className = this.className + " schover";
				else if(this.className == ""){
					this.className = "schover";
				}
			}
			aLiList[i].onmouseout=function() {
				var scClass = this.className;
				if(scClass == "schover")
					this.className = "";
				else if(scClass.indexOf("schover") > -1)
					this.className = scClass.replace("schover","").trim();
			}
		}
	//}
}
