
<!-- hide from old browsers

function animatedObject(elementName,loop,speed,steps,endRoutines,route){
  this.elementName = elementName;
  this.loop = loop;
  this.speed = speed;
  this.steps = steps;
  this.frameIndex = 0;
  this.endRoutines = endRoutines;
  this.route = route.split(',');
  this.animate = animateObject;
  this.move = moveObject;
  this.show = showObject;
  this.hide = hideObject;

  animatedObjects[elementName] = this;
}

function stopTimeline(timelineNumber){
   animationTime[timelineNumber] = animationTimeline[timelineNumber].length;
}

function startTimeline(timelineNumber) {
  animationTime[timelineNumber] = 0;
  timelineController(timelineNumber);
}

function timelineController(timelineNumber) {
    if (animationTime[timelineNumber] <= animationTimeline[timelineNumber].length - 1) {
      animationTime[timelineNumber]++;
        if (animationTimeline[timelineNumber][animationTime[timelineNumber]] != null){
          eval(animationTimeline[timelineNumber][animationTime[timelineNumber]]);
        }
        setTimeout('timelineController(' + timelineNumber + ')', 100);
    }
}

function showObject(){
  eval(layerObj + '["' + this.elementName + '"]' + styleObj + '.visibility = "visible"');
}
        
function hideObject(){
  eval(layerObj + '["' + this.elementName + '"]' + styleObj + '.visibility = "hidden"');
}
  

function moveObject(left, top){
  eval(layerObj + '["' + this.elementName + '"]' + styleObj + '.top = top');
  eval(layerObj + '["' + this.elementName + '"]' + styleObj + '.left = left');
}

function animateObject(){
    if (this.route.length > 4 && this.frameIndex < this.route.length)  {
      this.move(this.route[this.frameIndex], this.route[this.frameIndex + 1]);
      this.frameIndex += 2;
      setTimeout('animatedObjects["' + this.elementName + '"].animate()', this.speed);
    }
    else if (this.route.length == 4 && this.frameIndex <= this.steps) {
      this.move(parseInt(this.route[0]) + (this.frameIndex * ((parseInt(this.route[2]) - parseInt(this.route[0])) / this.steps)), parseInt(this.route[1]) + (this.frameIndex * ((parseInt(this.route[3]) - parseInt(this.route[1])) / this.steps)));
      this.frameIndex++;
      setTimeout('animatedObjects["' + this.elementName + '"].animate()', this.speed);         
    }
    else {
      eval(this.endRoutines + "");
      this.frameIndex = 0;
        if (this.loop == "yes"){
          this.animate();
        }
    }
}


function initAnimationC() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  How = new animatedObject('Howto', 'no', 10, 10, 'null', '-40,0,-40,-300');
  Inst = new animatedObject('Instruct', 'no', 10, 10, 'null', '10,0,10,0');
  OV1 = new animatedObject('Overlay1', 'no', 10, 10, 'null', '0,0,0,0');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'How.animate();Inst.show();'
  animationTimeline[0][20] = 'OV1.hide();'

startTimeline(0);
Waiting.hide();
}

function initAnimationH() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  How = new animatedObject('Howto', 'no', 10, 10, 'null', '-40,-300,-40,0');
  Inst = new animatedObject('Instruct', 'no', 10, 10, 'null', '10,0,10,0');
  OV1 = new animatedObject('Overlay1', 'no', 10, 10, 'null', '0,0,0,0');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'Inst.hide();OV1.show();How.show();How.animate();'

startTimeline(0);
Waiting.hide();
}

function initAnimationA1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T7 = new animatedObject('Time7', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarA1.show();CarA1.animate();T7.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'


startTimeline(0);
Waiting.hide();
}


function initAnimationB1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T12 = new animatedObject('Time12', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarB1.show();CarB1.animate();T12.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationC1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T15 = new animatedObject('Time15', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarC1.show();CarC1.animate();T15.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationD1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T8 = new animatedObject('Time8', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarD1.show();CarD1.animate();T8.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'


startTimeline(0);
Waiting.hide();
}

function initAnimationE1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T18 = new animatedObject('Time18', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarE1.show();CarE1.animate();T18.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationF1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T6 = new animatedObject('Time6', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarF1.show();CarF1.animate();T6.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationA2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T13 = new animatedObject('Time13', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarA2.show();CarA2.animate();T13.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}

function initAnimationB2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T16 = new animatedObject('Time16', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarB2.show();CarB2.animate();T16.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationC2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T14 = new animatedObject('Time14', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarC2.show();CarC2.animate();T14.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationD2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T2 = new animatedObject('Time2', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarD2.show();CarD2.animate();T2.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'


startTimeline(0);
Waiting.hide();
}


function initAnimationE2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T9 = new animatedObject('Time9', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarE2.show();CarE2.animate();T9.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationF2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T10 = new animatedObject('Time10', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarF2.show();CarF2.animate();T10.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationA3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T5 = new animatedObject('Time5', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarA3.show();CarA3.animate();T5.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'


startTimeline(0);
Waiting.hide();
}

function initAnimationB3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T3 = new animatedObject('Time3', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarB3.show();CarB3.animate();T3.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'




startTimeline(0);
Waiting.hide();
}


function initAnimationC3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2485,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T4 = new animatedObject('Time4', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarC3.show();CarC3.animate();T4.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'


startTimeline(0);
Waiting.hide();
}


function initAnimationD3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2485,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T17 = new animatedObject('Time17', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarD3.show();CarD3.animate();T17.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationE3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2485,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T11 = new animatedObject('Time11', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarE3.show();CarE3.animate();T11.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'

startTimeline(0);
Waiting.hide();
}


function initAnimationF3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
 Waiting = new animatedObject('waitscr','no',0,0,'null','0,0,0,0');
  CarA1 = new animatedObject('elDRAGOne', 'no', 88, 131, 'null', '514,20,2500,20');
  CarB1 = new animatedObject('elDRAG4', 'no', 98, 131, 'null', '514,95,2500,95');
  CarC1 = new animatedObject('elDRAG7', 'no', 104, 131, 'null', '514,170,2500,170');
  CarD1 = new animatedObject('elDRAG10', 'no', 90, 131, 'null', '514,245,2500,245');
  CarE1 = new animatedObject('elDRAG13', 'no', 110, 131, 'null', '514,320,2500,320');
  CarF1 = new animatedObject('elDRAG16', 'no', 86, 131, 'null', '514,395,2500,395');
  CarA2 = new animatedObject('elDRAG2', 'no', 100, 131, 'null', '514,20,2500,20');
  CarB2 = new animatedObject('elDRAG5', 'no', 106, 131, 'null', '514,95,2500,95');
  CarC2 = new animatedObject('elDRAG8', 'no', 102, 131, 'null', '514,170,2500,170');
  CarD2 = new animatedObject('elDRAG11', 'no', 78, 131, 'null', '514,245,2500,245');
  CarE2 = new animatedObject('elDRAG14', 'no', 92, 131, 'null', '514,320,2500,320');
  CarF2 = new animatedObject('elDRAG17', 'no', 94, 131, 'null', '514,395,2500,395');
  CarA3 = new animatedObject('elDRAG3', 'no', 84, 131, 'null', '514,20,2500,20');
  CarB3 = new animatedObject('elDRAG6', 'no', 80, 131, 'null', '514,95,2500,95');
  CarC3 = new animatedObject('elDRAG9', 'no', 82, 131, 'null', '496,170,2490,170');
  CarD3 = new animatedObject('elDRAG12', 'no', 108, 131, 'null', '514,245,2500,245');
  CarE3 = new animatedObject('elDRAG15', 'no', 96, 131, 'null', '514,320,2500,320');
  CarF3 = new animatedObject('elDRAG18', 'no', 76, 131, 'null', '494,395,2482,395');
  T1 = new animatedObject('Time1', 'no', 10, 10, 'null', '740,4,740,4');
  TB = new animatedObject('TimeB', 'no', 10, 10, 'null', '740,4,740,4');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'CarF3.show();CarF3.animate();T1.show();TB.show();'
  animationTimeline[0][401] = 'TB.hide();'


startTimeline(0);
Waiting.hide();
}


var layerObj, styleObj, totalTime, currTime;
var animationTime, animationTimeline, animatedObjects;
var bon, boff;

var isNS = (document.layers);
var isDHTML = (document.layers || document.all);

// -->