<!--//

startList = function() {
if (document.all&&document.getElementById) {
navigationRoot = document.getElementById("dropdown");
for (i=0; i<navigationRoot.childNodes.length; i++) {
node = navigationRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}

window.onload=startList; 

// Scroll Tekst Statusbalk

var Count = 0; var Text = "SCOS #1 in Internet Security, Monitoring & Networking"; var Speed = 90; var timerID = null; var TimerRunning = false; 
var i = 0; while (i ++ < 140) Text = " " + Text; function Scroll(){ 
window.status = Text.substring(Count++, Text.length); if (Count == Text.length) 
Count = 0; timerID = setTimeout("Scroll()", Speed); TimerRunning = true; 
} function Start(){ Stop(); Scroll(); } function Stop(){ if(TimerRunning) clearTimeout(timerID); 
TimerRunning = false; } Start();





//-->
