<!--//--><![CDATA[//><!--
var newslist=new Array();
var cnt=0;	
var curr = "";
var i=-1;


// Elemente des newstickers 1. Argument Beschreibung 2. Argument relativer Pfad zum Dokument

newslist[0]=new Array("Terminals NTB 200/300 with WiFi - start at 05/07","ntb200.php")
newslist[1]=new Array("Terminals NTA 200 with WiFi ab 05/07","nta200.php")
newslist[2]=new Array("NAC 701 and 707 are extending the family of biometrics access control","nac701.php")

function newsticker()
{

	if (i < newslist[cnt][0].length - 1)	{
		i++;
		temp1 = newslist[cnt][0];	
		temp1 = temp1.split('');	
  		curr = curr+temp1[i];
		temp2 = newslist[cnt][1];	
  		document.getElementById("news").innerHTML = "<a href='"+temp2+"'>"+curr+"_</a>";
  		setTimeout('newsticker()',50)
		return;
	}

	i = -1; curr = "";
	if (cnt<newslist.length-1)
		cnt++;
	else
		cnt=0;
	setTimeout('newsticker()',3500)

}
	

//Navigation

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="li") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

window.onload=newsticker;

if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]>

