// JavaScript Document
<!--//--><![CDATA[//><!--
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", "");
}
}
}
}
}

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


// SCRIPT 2 ROTATING LOGOS
var pos=0, speed=50;
scrollIt = function(){

function scrollIt() {
document.getElementById('scroller2').style.backgroundPosition=pos+'px 0px';
pos--;  // specifies left / right or top / bottom.
setTimeout('scrollIt()',speed);
 }
}

window.onload=function(){
	startList();
	scrollIt();
}

<!-- window.onload=startList; -->

//--><!]]>