
startList = function() {
	if (document.all && document.getElementById) {
		cssdropdownRoot = document.getElementById("cssdropdown");
		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", "");
				}
			}
		}
		isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1;
		if (isIE6) {
			supersleight.run();
		}
	}
}

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


function swapImages(name, src) {
	isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1;
	if (isIE6) {
		document[name].contentEditable = true;
		document[name].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale');";
		return;
	}
	
	else {
		document[name].src = src;
	}
	

}
