
<!-- 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');
  ImageW1 = new animatedObject('Mattwolf1', 'no', 20, 40, 'null', '-40,-210,0,25');
  ImageW2 = new animatedObject('Mattwolf2', 'no', 20, 30, 'null', '0,25,392,25');
  Insert1 = new animatedObject('MWinsert1', 'no', 20, 50, 'null', '0,66,0,66');
  Insert2 = new animatedObject('MWinsert2', 'no', 20, 50, 'null', '0,25,392,25');
  ImageM1 = new animatedObject('Montage1', 'no', 20, 50, 'null', '500,-210,420,100');
  ImageM2 = new animatedObject('Montage2', 'no', 20, 50, 'null', '420,100,70,240');
  BackgndB1 = new animatedObject('Back1', 'no', 20, 80, 'null', '-40,0,-1100,0');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  logo1B = new animatedObject('logoB1', 'no', 85, 85, 'null', '780,370,-600,370');
  logo2A = new animatedObject('logoA2', 'no', 85, 85, 'null', '780,50,-600,50');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logoAA = new animatedObject('logoA', 'no', 25, 45, 'null', '-300,-40,180,78');
  logoAAMO = new animatedObject('logoAMO', 'no', 25, 45, 'null', '0,0,180,78');
  logoBB = new animatedObject('logoB', 'no', 25, 45, 'null', '1000,200,365,270');
  logoBBMO = new animatedObject('logoBMO', 'no', 25, 45, 'null', '0,0,365,270');  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'no', 120, 120, 'null', '-400,222,1200,222');
  MouseA = new animatedObject('MouseEye', 'no', 20, 20, 'null', '173,305,173,305');
  MouseB = new animatedObject('WolfOut', 'no', 20, 20, 'null', '482,25,482,25');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  OV2 = new animatedObject('Overlay2', 'no', 5, 10, 'null', '0,0,0,0');
  OV3 = new animatedObject('Overlay3', 'no', 5, 10, 'null', '0,0,0,0');
  OV4 = new animatedObject('Overlay4', 'no', 5, 10, 'null', '0,0,0,0');
  OV5 = new animatedObject('Overlay5', 'no', 5, 10, 'null', '0,0,0,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 18, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-282,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-282,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  OV = new animatedObject('Overlay', 'no', 20, 20, 'null', '-40,0,-40,0');
  NBK = new animatedObject('NavBack', 'no', 10, 10, 'null', '-490,0,-23,2');  

  animationTimeline[0] = new Array();

  animationTimeline[0][01] = 'BackgndB1.show();ImageW1.show(); ImageW1.animate();'
  animationTimeline[0][02] = 'ImageM1.show(); ImageM1.animate();'
  animationTimeline[0][03] = 'logo1B.show(); logo1B.animate();'
  animationTimeline[0][04] = 'logo1A.show(); logo1A.animate();'
  animationTimeline[0][20] = 'logo2B.show(); logo2B.animate();'
  animationTimeline[0][21] = 'logo2A.show(); logo2A.animate();'
  animationTimeline[0][50] = 'Insert2.show();'
  animationTimeline[0][80] = 'BackgndB1.show();BackgndB1.animate();'
  animationTimeline[0][95] = 'logo1A.hide();logo1B.hide();logo2A.hide();logo2B.hide();'
  animationTimeline[0][110] = 'ImageM2.show();ImageM2.animate();'
  animationTimeline[0][111] = 'ImageM1.hide();'
  animationTimeline[0][139] = 'logoBB.show(); logoBB.animate();'
  animationTimeline[0][142] = 'Insert2.hide();ImageW2.show();ImageW2.animate();'
  animationTimeline[0][143] = 'ImageW1.hide();'
  animationTimeline[0][145] = 'logoAA.show(); logoAA.animate();'
  animationTimeline[0][168] = 'Insert1.show();'
  animationTimeline[0][175] = 'MouseA.show();logoBBMO.show();logoAAMO.show();'
  animationTimeline[0][180] = 'OV2.show();'
  animationTimeline[0][184] = 'OV3.show();'
  animationTimeline[0][188] = 'OV4.show();'  
  animationTimeline[0][192] = 'OV5.show();'
  animationTimeline[0][196] = 'OV5.hide();'
  animationTimeline[0][198] = 'OV4.hide();'
  animationTimeline[0][200] = 'OV3.hide();'
  animationTimeline[0][202] = 'OV2.hide();'      
  animationTimeline[0][205] = 'Insert1.hide();Text1.show(); Text1.animate();MouseB.show();'
  animationTimeline[0][210] = 'N1.show();'
  animationTimeline[0][230] = 'Text2.show(); Text2.animate()'
  animationTimeline[0][231] = 'OV.show();N2.show();N2.animate();N1A.show();'
  animationTimeline[0][245] = 'N3.show();N3.animate();N4.show();N4.animate();'
  animationTimeline[0][255] = 'NBK.show();NBK.animate();'
  animationTimeline[0][265] = 'NAP1.show();NAP1.animate();NLK1.show();'
  animationTimeline[0][270] = 'OV.hide();'  


 
startTimeline(0);
Waiting.hide();
}

function initAnimationNav() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  logoAA = new animatedObject('logoA', 'no', 25, 45, 'null', '-480,-40,140,55');
  logoAAN = new animatedObject('logoAN', 'no', 25, 45, 'null', '-480,-40,150,55');
  logoBB = new animatedObject('logoB', 'no', 25, 45, 'null', '-250,220,325,270');
  logoBBN = new animatedObject('logoBN', 'no', 25, 45, 'null', '-250,220,315,270');
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'no', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'no', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'no', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 18, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-282,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-282,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  OV = new animatedObject('Overlay', 'no', 20, 20, 'null', '-40,0,-40,0');
  NBK = new animatedObject('NavBack', 'no', 10, 10, 'null', '-490,0,-23,2');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();N2.show();N2.animate();N1A.show();'
  animationTimeline[0][16] = 'N3.show();N3.animate();N4.show();N4.animate();'
  animationTimeline[0][25] = 'NBK.show();NBK.animate();'
  animationTimeline[0][35] = 'NAP1.show();NAP1.animate();NLK1.show();'
  animationTimeline[0][40] = 'OV.hide();'
  animationTimeline[0][120] = 'NAP2.show();NAP2.animate();'
  animationTimeline[0][200] = 'NAP3.show();NAP3.animate();'
  animationTimeline[0][280] = 'NAP4.show();NAP4.animate();'
  animationTimeline[0][360] = 'NAP5.show();NAP5.animate();'
  animationTimeline[0][440] = 'NAP6.show();NAP6.animate();NAP6B.show();NAP6B.animate();'
  animationTimeline[0][520] = 'NAP6.hide();NAP6B.hide();'
  animationTimeline[0][600] = 'NAP5.hide();'
  animationTimeline[0][680] = 'NAP4.hide();'
  animationTimeline[0][760] = 'NAP3.hide();'
  animationTimeline[0][840] = 'NAP2.hide();'


startTimeline(0);

}

function initAnimationNavC() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();

  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-23,1,-600,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-28,48,-28,24');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-28,1,-28,24');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP5 = new animatedObject('NavP5', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP6B = new animatedObject('NavP6b', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  OV = new animatedObject('Overlay', 'no', 20, 20, 'null', '-40,0,-40,0');
  NBK = new animatedObject('NavBack', 'no', 10, 10, 'null', '-490,0,-23,2');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.hide();N3.show();N3.animate();N4.show();N4.animate();NLK1.hide();NBK.hide();'
  animationTimeline[0][12] = 'N2.show();N2.animate();N3.hide();N4.hide();NAP1.hide();NAP2.hide();NAP3.hide();NAP4.hide();NAP5.hide();NAP6.hide();NAP6B.hide();NAP7.hide();NAP1.animate();NAP2.animate();NAP3.animate();NAP4.animate();NAP5.animate();NAP6.animate();NAP6B.animate();NAP7.animate();'
  animationTimeline[0][25] = 'N1A.hide();'


startTimeline(0);

}

function initAnimationNavL1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-32,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-32,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'NAP1.hide();NAP2.hide();NAP3.hide();NAP4.hide();NAP5.hide();NAP6.hide();NAP6B.hide();NAP7.hide();NAP1.show();NAP1.animate();'


startTimeline(0);

}

function initAnimationNavL2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-282,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-32,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-32,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'NAP1.hide();NAP2.hide();NAP3.hide();NAP4.hide();NAP5.hide();NAP6.hide();NAP6B.hide();NAP7.hide();NAP2.show();NAP2.animate();'


startTimeline(0);

}

function initAnimationNavL3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-282,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-32,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-32,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'NAP1.hide();NAP2.hide();NAP3.hide();NAP4.hide();NAP5.hide();NAP6.hide();NAP6B.hide();NAP7.hide();NAP3.show();NAP3.animate();'


startTimeline(0);

}

function initAnimationNavL4() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-32,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-32,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'NAP1.hide();NAP2.hide();NAP3.hide();NAP5.hide();NAP6.hide();NAP6B.hide();NAP7.hide();NAP4.show();NAP4.animate();'


startTimeline(0);

}

function initAnimationNavL5() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-282,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-32,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'NAP1.hide();NAP2.hide();NAP3.hide();NAP4.hide();NAP6.hide();NAP6B.hide();NAP7.hide();NAP5.show();NAP5.animate();'


startTimeline(0);

}

function initAnimationNavL6() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-32,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-282,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-32,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'NAP1.hide();NAP2.hide();NAP3.hide();NAP4.hide();NAP5.hide();NAP7.hide();NAP6.show();NAP6.animate();NAP6B.show();NAP6B.animate();'


startTimeline(0);

}

function initAnimationNavL7() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Text1 = new animatedObject('TextA', 'no', 80, 80, 'null', '394,130,-600,330');
  Text2 = new animatedObject('TextB', 'yes', 120, 120, 'null', '-400,222,1200,222');
  logo2B = new animatedObject('logoB2', 'yes', 85, 85, 'null', '-780,240,780,240');
  logo1A = new animatedObject('logoA1', 'yes', 85, 85, 'null', '-400,310,780,310');
  N1 = new animatedObject('Nav1', 'no', 10, 10, 'null', '-40,0,-40,0');
  N1A = new animatedObject('Nav1A', 'no', 10, 10, 'null', '-40,0,-40,0');
  N2 = new animatedObject('Nav2', 'no', 10, 15, 'null', '-600,1,-23,1');
  N3 = new animatedObject('Nav3', 'no', 10, 12, 'null', '-38,24,-38,48');
  N4 = new animatedObject('Nav4', 'no', 10, 12, 'null', '-38,24,-38,1');
  NAP1 = new animatedObject('NavP1', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP2 = new animatedObject('NavP2', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP3 = new animatedObject('NavP3', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP4 = new animatedObject('NavP4', 'no', 90, 90, 'null', '-32,23,-32,23');
  NAP5 = new animatedObject('NavP5', 'no', 50, 50, 'null', '-32,23,-32,23');
  NAP6 = new animatedObject('NavP6', 'no', 90, 90, 'null', '-32,23,-282,23');
  NAP6B = new animatedObject('NavP6b', 'no', 120, 120, 'null', '-32,23,-32,23');
  NAP7 = new animatedObject('NavP7', 'no', 90, 90, 'null', '-282,23,-32,23');
  NLK1 = new animatedObject('NLink1', 'no', 90, 90, 'null', '-38,2,-38,2');
 
  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'NAP1.hide();NAP2.hide();NAP3.hide();NAP4.hide();NAP5.hide();NAP6.hide();NAP6B.hide();NAP7.show();NAP7.animate();'

startTimeline(0);

}


var layerObj, styleObj, totalTime, currTime;
var animationTime, animationTimeline, animatedObjects;
var bon, boff;

var isNS = (document.layers);
var isDHTML = (document.layers || document.all);

// -->




