<!--
   var bwA=top.br;
   var speedA=100;
   var loopA, timerA
   var limitA = 20;
   var limitCountA = 0;
   var distanceA = 5;
   var directionA = 'D';
//   var direction = 'L';
   var nIxA=0;
   var initialisedA; 
   var objScrollerA = new Array(nDivCountA);

   function ConstructObjectA(objA,nestA)
   { 
       nestA=(!nestA) ? '':'document.'+nestA+'.';
       this.el=bwA.dom?document.getElementById(objA):bwA.ie4?document.all[objA]:bwA.ns4?eval(nestA+'document.'+objA):0;
       this.css=bwA.dom?document.getElementById(objA).style:bwA.ie4?document.all[objA].style:bwA.ns4?eval(nestA+'document.'+objA):0;
       this.scrollHeight=bwA.ns4?this.css.document.height:this.el.offsetHeight;
       this.scrollWidth = bwA.ns4?this.css.document.width : this.el.offsetWidth;
       this.clipHeight=bwA.ns4?this.css.clip.height:this.el.offsetHeight;
       this.up=MoveAreaUpA;this.down=MoveAreaDownA; 
       this.left=MoveAreaLeftA;this.right=MoveAreaRightA;
       this.MoveAreaA=MoveAreaA; this.x; this.y; 
       this.objA = objA + "Object" 
       eval(this.objA + "=this") 
       return this 
   } 
   
   function MoveAreaA(x, y)
   { 
       this.x = x;this.y = y 
       this.css.left = this.x 
       this.css.top = this.y 
   } 
   
   function MoveAreaLeftA(moveA)
   { 
      if(this.x > distanceA)
      { 
         this.MoveAreaA(this.x - distanceA, 0);
         TimerID = setTimeout(this.objA + ".left(" + distanceA + ")", speedA);
      } 
      else 
      {
         directionA='R';
         TimerID = setTimeout('PerformScrollA()', 4000);
      }
   } 
   
   function MoveAreaRightA(moveA)
   {
      if(this.x < this.scrollWidth)
      { 
         this.MoveAreaA(this.x + distanceA, 0) 
         if(loopA)
         {
            TimerIDA = setTimeout(this.objA + ".right(" + distanceA + ")", speedA);
         }
      }
      else
      {
         directionA = 'L';
         nIxA++;
         if (nIxA > (nDivCountA-1))
            nIxA=0;
         TimerIDA = setTimeout('PerformScrollA()', 100);
      }
   } 

   function MoveAreaDownA(moveA)
   { 
      if(this.y > -this.scrollHeight)
      { 
         this.MoveAreaA(0, this.y - distanceA) 
         TimerIDA = setTimeout(this.objA + ".down(" + distanceA + ")", speedA);
      }
      else
      {
         directionA='U';
         nIxA++;
         if (nIxA > (nDivCountA-1)) 
            nIxA = 0;
         TimerIDA = setTimeout('PerformScrollA()', 100);
      }
   } 
   
   function MoveAreaUpA(moveA)
   { 
      if(this.y < distanceA)
      { 
         this.MoveAreaA(0, this.y + distanceA) 
         if(loopA)
         {
            TimerID = setTimeout(this.objA+".up(" + distanceA + ")", speedA);
         }
      }
      else
      {
         directionA = 'D';
         TimerIDA = setTimeout('PerformScrollA()', 4000);
      }
   } 

   function PerformScrollA()
   { 
      if(initialisedA)
      { 
         loopA=true; 
         if (directionA == 'D') 
         {
            objScrollerA[nIxA].down(7);
         }
         else if (directionA == 'U') 
         {
            objScrollerA[nIxA].up(7);
         }
         else if (directionA == 'L') 
         {
            objScrollerA[nIxA].left(7);
         }
         else if (directionA == 'R') 
         {
            objScrollerA[nIxA].right(7);
         }
      } 
   } 

   function CeaseScrollA()
   { 
       loopA = false;
       if(TimerIDA)
         clearTimeout(TimerIDA);
   } 
   
   function InitialiseScrollableArea()
   { 
       objContainerA = new ConstructObjectA('divLinkContainer');
       for (var i = 0; i < objScrollerA.length; i++)
       {
            objScrollerA[i] = new ConstructObjectA('divLinkContent' + i, 'divContainer');
            objScrollerA[i].MoveAreaA(0, -objScrollerA[i].scrollHeight);
//            objScroller[i].MoveArea(objScroller[i].scrollWidth, 0);
            objScrollerA[i].css.visibility = 'visible';
       }
       objContainerA.css.visibility = 'visible';
//alert('Container height: '+objContainer.clipHeight+'\nScroll height: '+objScroller.scrollHeight);
       initialisedA = true; 
       loopA = true; 
       TimerIDA = window.setTimeout('PerformScrollA()', 1000);
   } 
   
    function InitialiseScrollableAreaA()
   { 
       objContainerA = new ConstructObjectA('divLinkContainer');
       for (var i = 0; i < objScrollerA.length; i++)
       {
            objScrollerA[i] = new ConstructObjectA('divLinkContent' + i, 'divContainer');
            objScrollerA[i].MoveAreaA(0, -objScrollerA[i].scrollHeight);
//            objScroller[i].MoveArea(objScroller[i].scrollWidth, 0);
            objScrollerA[i].css.visibility = 'visible';
       }
       objContainerA.css.visibility = 'visible';
//alert('Container height: '+objContainer.clipHeight+'\nScroll height: '+objScroller.scrollHeight);
       initialisedA = true; 
       loopA = true; 
       TimerIDA = window.setTimeout('PerformScrollA()', 1000);
   } 
-->

