
<!--
// by Vic Phillips (16-June-2006) http://www.vicsjavascripts.org.uk

// Scrollers speed here (larger is faster 1-10)
var zxcSpeed=20

// Change nothing below!

zxcSpeed=(document.all)? zxcSpeed : Math.max(1, zxcSpeed-1) //slow speed down by 1 for NS
var zxcSObj,zxcSObj2,zxcSObj2,zxcTO;

function zxcInitScroller(){
 zxcSObj=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
 zxcSObj.style.top=(zxcSObj.parentNode.offsetHeight)+8+"px"
 zxcSObj2=zxcSObj.cloneNode(true);
 zxcSObj.parentNode.appendChild(zxcSObj2);
 zxcScroll();
}

function zxcScroll(){
 if (parseInt(zxcSObj.style.top)>(zxcSObj.offsetHeight*2*(-1)+8)){
  zxcSObj.style.top=(parseInt(zxcSObj.style.top)-1)+"px"
 }
 else {
  zxcSObj.style.top=(zxcSObj.parentNode.offsetHeight)+8+"px"
 }
 zxcSObj2.style.top=(parseInt(zxcSObj.style.top)+zxcSObj.offsetHeight)+8+"px"
 zxcTO=setTimeout('zxcScroll()',zxcSpeed);
}
//-->

