// Put an ID of "activemenu" on the parentNode of the span with the className "L2_Active"
function csFixDWActiveMenu() {
	var aSPANs, oSPAN, s=0;
	aSPANs = document.getElementsByTagName("span");
	while(oSPAN = aSPANs[s++]) {
		if (oSPAN.className == "L2_Active") {
			oSPAN.parentNode.setAttribute("id", "activemenu", 0);
			break;
		}
	}
}