function sigScroller(name,ob1nm,delay,speed){ this.name = name; this.tgt = document.getElementById("mySigScroller") this.tgt.style.width="88px"; this.tgt.style.height="31px"; this.tgt.style.clip="rect(0,0,88,31)"; //this.tgt.style.border="1px solid #ccc"; this.tgt.style.overflow = "hidden"; this.tgt.style.position = "relative"; this.tgt.style.textAlign = "left"; this.obj1 = document.createElement("DIV"); this.obj1.id = "HDsigCont"; this.obj1.style.position="absolute"; this.obj1.style.width="88px"; this.obj1.style.height="31px"; this.obj1.style.top = 0; this.obj1.style.padding="0px"; this.obj1.style.margin="0px"; document.getElementById('mySigScroller').appendChild(this.obj1); this.obj2 = document.createElement("DIV"); this.obj2.id = "HDsigCont2"; this.obj2.style.position="absolute"; this.obj2.style.width="88px"; this.obj2.style.height="31px"; this.obj2.style.top = 0; this.obj2.style.padding="0px"; this.obj2.style.margin="0px"; document.getElementById('mySigScroller').appendChild(this.obj2); this.pos1 = 0; this.pos2 = 31; this.issliding = false; this.delay = delay; this.speed = speed; this.lastlink = 1; this.links = siglinks; this.obj1.style.top = this.pos1; this.obj2.style.top = this.pos2; this.obj1.innerHTML = this.links[0]; this.obj2.innerHTML = this.links[1]; if(!(navigator.userAgent.indexOf("Gecko") > -1)) setTimeout(this.name+".slide()",delay); this.slide = function(){ this.issliding = true; --this.pos1; --this.pos2; if(this.pos1 == 0){ this.pos2 = this.obj1.clientHeight; this.issliding = false; ++this.lastlink; if(this.lastlink == this.links.length) this.lastlink = 0; this.obj2.innerHTML = this.links[this.lastlink]; } else if(this.pos2 == 0){ this.pos1 = this.obj2.clientHeight; this.issliding = false; ++this.lastlink; if(this.lastlink == this.links.length) this.lastlink = 0; this.obj1.innerHTML = this.links[this.lastlink]; } this.obj1.style.top = this.pos1; this.obj2.style.top = this.pos2; if(this.issliding) setTimeout(this.name+".slide()",this.speed); else setTimeout(this.name+".slide()",this.delay); } } var siglinks= new Array(11) siglinks[0]=""; siglinks[1]=""; siglinks[2]=""; siglinks[3]=""; siglinks[4]=""; siglinks[5]=""; siglinks[6]=""; siglinks[7]=""; siglinks[8]=""; siglinks[9]=""; siglinks[10]=""; siglinks[11]=""; siglinks[12]=""; sigScroller = new sigScroller("sigScroller","mySigScroller",3000,1);