dimage1 = new Image(); dimage1.src = "images/DashDash.jpg";
var posDashDash = new Array(19, 57, 95, 134, 172, 210, 249, 287, 326, 364, 402, 441, 479, 518, 556, 595, 633, 671, 709, 748);
var posIndex = 0;
//Object constructor
function makeAnimateObj(obj, nest)
{
  nest = (!nest) ? "" : 'document.' + nest + '.';
  this.el = bw.dom ? document.getElementById(obj) : bw.ie4 ? document.all[obj] : bw.ns4 ? eval(nest + 'document.' + obj) : 0;
  this.css = bw.dom ? document.getElementById(obj).style : bw.ie4 ? document.all[obj].style : bw.ns4 ? eval(nest + 'document.' + obj) : 0;
  this.moveIt = a_moveIt;
  this.x = 0;
  this.y = 0;
  this.obj = obj + "Object";
  eval(this.obj + "=this");
  return this;
}

function a_moveIt(x, y)
{
  if(x != null)
  {
    this.x = x;
    this.css.left = this.x + px;
  }
  if(y != null)
  {
    this.y = y;
    this.css.top = this.y + px;
  }
}

function AnimateDashDash()
{
  if(posIndex >= posDashDash.length)
    posIndex = 0;
  oDashDashDiv.moveIt(posDashDash[posIndex]);
  posIndex++;
}

function AnimateInit()
{
  oDashDashDiv = new makeAnimateObj('divDashStrip');
  setInterval('AnimateDashDash()', 200);
}
