<!-- 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 initAnimation() {
  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');
  SL1 = new animatedObject('Slide', 'no', 10, 30, 'null', '-200,65,40,65'); 
  D1 = new animatedObject('Descript', 'no', 05, 20, 'null', '230,-350,230,105');   
  OV = new animatedObject('Overlay', 'no', 01, 01, 'null', '0,,0,');   
      
  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();SL1.show();SL1.animate();'
  animationTimeline[0][12] = 'D1.show();D1.animate();'  
  animationTimeline[0][32] = 'OV.hide();'   
  
startTimeline(0);
Waiting.hide();
}


function initAnimationC() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();

  SL1 = new animatedObject('Slide', 'no', 10, 30, 'null', '-500,45,40,45');   
  D1 = new animatedObject('Descript', 'no', 01, 01, 'null', '230,-500,230,70'); 
  F1 = new animatedObject('Regulate', 'no', 01, 01, 'null', '230,-500,230,80'); 
  S1 = new animatedObject('Output', 'no', 01, 01, 'null', '230,-500,230,30'); 
  Q1 = new animatedObject('Features', 'no', 01, 01, 'null', '230,-400,230,30');   
  C1 = new animatedObject('Cover', 'no', 01, 01, 'null', '230,-500,230,30'); 
      
  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'C1.hide();F1.hide();S1.hide();Q1.hide();D1.hide();'
  
startTimeline(0);

}


function initAnimationD() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  SL1 = new animatedObject('Slide', 'no', 10, 30, 'null', '-500,45,40,45');   
  D1 = new animatedObject('Descript', 'no', 05, 20, 'null', '230,-350,230,105'); 
  F1 = new animatedObject('Regulate', 'no', 01, 01, 'null', '230,-500,230,80'); 
  S1 = new animatedObject('Output', 'no', 01, 01, 'null', '230,-500,230,30');
  Q1 = new animatedObject('Features', 'no', 01, 01, 'null', '230,-400,230,30');    
  C1 = new animatedObject('Cover', 'no', 01, 01, 'null', '240,-500,240,30'); 
  OV = new animatedObject('Overlay', 'no', 01, 01, 'null', '0,,0,');          

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();C1.show();F1.hide();S1.hide();Q1.hide();D1.show();D1.animate();'
  animationTimeline[0][20] = 'OV.hide();' 
    
startTimeline(0);

}

function initAnimationF() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  SL1 = new animatedObject('Slide', 'no', 10, 30, 'null', '-500,45,40,45');   
  D1 = new animatedObject('Descript', 'no', 01, 01, 'null', '230,-500,230,70'); 
  F1 = new animatedObject('Regulate', 'no', 05, 20, 'null', '230,-350,230,85'); 
  S1 = new animatedObject('Output', 'no', 01, 01, 'null', '230,-500,230,30');
  Q1 = new animatedObject('Features', 'no', 01, 01, 'null', '230,-400,230,30');    
  C1 = new animatedObject('Cover', 'no', 01, 01, 'null', '240,-500,240,30');
  OV = new animatedObject('Overlay', 'no', 01, 01, 'null', '0,,0,');             
      
  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();C1.show();D1.hide();S1.hide();Q1.hide();F1.show();F1.animate();'
  animationTimeline[0][20] = 'OV.hide();' 
  
startTimeline(0);

}

function initAnimationS() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  SL1 = new animatedObject('Slide', 'no', 10, 30, 'null', '-500,45,40,45');   
  D1 = new animatedObject('Descript', 'no', 01, 01, 'null', '230,-500,230,70'); 
  F1 = new animatedObject('Regulate', 'no', 01, 01, 'null', '230,-500,230,70'); 
  S1 = new animatedObject('Output', 'no', 05, 20, 'null', '230,-350,230,90'); 
  Q1 = new animatedObject('Features', 'no', 01, 01, 'null', '230,-400,230,30');   
  C1 = new animatedObject('Cover', 'no', 01, 01, 'null', '240,-500,240,30');
  OV = new animatedObject('Overlay', 'no', 01, 01, 'null', '0,,0,');             
      
  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();C1.show();D1.hide();F1.hide();Q1.hide();S1.show();S1.animate();'
  animationTimeline[0][20] = 'OV.hide();' 
  
startTimeline(0);

}

function initAnimationQF() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  SL1 = new animatedObject('Slide', 'no', 10, 30, 'null', '-500,45,40,45');   
  D1 = new animatedObject('Descript', 'no', 01, 01, 'null', '230,-500,230,70'); 
  F1 = new animatedObject('Regulate', 'no', 01, 01, 'null', '230,-350,230,60'); 
  S1 = new animatedObject('Output', 'no', 01, 01, 'null', '230,-500,230,70');  
  Q1 = new animatedObject('Features', 'no', 05, 20, 'null', '220,-400,220,95');   
  C1 = new animatedObject('Cover', 'no', 01, 01, 'null', '240,-500,240,30');
  OV = new animatedObject('Overlay', 'no', 01, 01, 'null', '0,,0,');             
      
  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();C1.show();D1.hide();S1.hide();F1.hide();Q1.show();Q1.animate();'
  animationTimeline[0][20] = 'OV.hide();' 
  
startTimeline(0);

}

var layerObj, styleObj, totalTime, currTime;
var animationTime, animationTimeline, animatedObjects;
var bon, boff;

var isNS = (document.layers);
var isDHTML = (document.layers || document.all);

// -->



