
startList = function() {
if (document.all&&document.getElementById) {
cssdropdownRoot = document.getElementById("cssdropdown");
if(cssdropdownRoot == null){
	return;


}

for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
node = cssdropdownRoot.childNodes[x];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
//this.style.backgroundColor = "rgb(245,245,245)";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
this.style.backgroundColor = "white";
}
}
}
}
}

if (window.attachEvent)
window.attachEvent("onload", startList)
else
window.onload=startList;


function showSugTip(e) {
  var sugghelp = document.getElementById('suggTip');
  sugghelp.style.left = e.pageX ? pageXOffset + e.clientX - 100 : document.body.scrollLeft + e.clientX - 100;sugghelp.style.top = e.pageY ? pageYOffset + e.clientY + 15 : document.body.scrollTop + e.clientY + 15;sugghelp.style.display = "block";
}

function hideSugTip() {
  document.getElementById('suggTip').style.display = "none";
}
