function sp_list() {
var mEls = document.getElementById("list0").getElementsByTagName("li");

for (var i=0; i<mEls.length; i++) {
mEls[i].onmouseover=function() {
this.className+=(this.className.length>0? " ": "") + "mhover";
}
mEls[i].onMouseDown=function() {
this.className+=(this.className.length>0? " ": "") + "mhover";
}
mEls[i].onMouseUp=function() {
this.className+=(this.className.length>0? " ": "") + "mhover";
}
mEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp("( ?|^)mhover\\b"),"");
}
}

}

function top_list() {

var yEls = document.getElementById("abc").getElementsByTagName("li");
for (var i=0; i<yEls.length; i++) {
yEls[i].onmouseover=function() {
this.className+=(this.className.length>0? " ": "") + "admhover";
}
yEls[i].onMouseDown=function() {
this.className+=(this.className.length>0? " ": "") + "admhover";
}
yEls[i].onMouseUp=function() {
this.className+=(this.className.length>0? " ": "") + "admhover";
}
yEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp("( ?|^)admhover\\b"),"");
}
}

}




