//2
startList = function(count) {
if (document.all&&document.getElementById) {
	
for (a=0; a<count; a++) {
cid = "dp" + a;
cssdropdownRoot = document.getElementById(cid);
//alert(cssdropdownRoot);
for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
node = cssdropdownRoot.childNodes[x];
if (node.nodeName=="LI") {
node.onmouseover=function() {
	this.className+=" over";
    }
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
					}
				}
			}
		}
}
}

//if (window.attachEvent)
//window.attachEvent("onload", startList(2))
//else
//window.onload=startList(2);
