
<!-- 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');
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '240,500,240,75');
  Text1B = new animatedObject('Logo1B', 'no', 40, 40, 'null', '780,360,-10,4');
  Text1W = new animatedObject('Logo1W', 'no', 40, 40, 'null', '777,357,-13,1');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-13,1');
  Text2 = new animatedObject('Next', 'no', 10, 40, 'null', '-143,120,-7,220');
  Text3 = new animatedObject('NextS', 'no', 10, 40, 'null', '-140,123,-4,223');
  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');  

  animationTimeline[0] = new Array();

  animationTimeline[0][01] = 'Text1B.show(); Text1B.animate();Text1W.show(); Text1W.animate();'
  animationTimeline[0][15] = 'ImageJ.show(); ImageJ.animate();'
  animationTimeline[0][82] = 'N1.show();'
  animationTimeline[0][85] = 'OV.show();ImageJ.animate();N2.show();N2.animate();N1A.show();'
  animationTimeline[0][98] = 'N3.show();N3.animate();N4.show();N4.animate();'
  animationTimeline[0][110] = 'NAP1.show();NAP1.animate();NLK1.show();'
  animationTimeline[0][130] = 'OV.hide();'  
  animationTimeline[0][150] = 'Text2.show();Text3.show();Text2.animate();Text3.animate();'   
 
startTimeline(0);
Waiting.hide();
}

function initAnimationNav() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();ImageJ.animate();N2.show();N2.animate();N1A.show();'
  animationTimeline[0][35] = 'Text1B.show(); Text1B.animate();Text1W.show(); Text1W.animate();'
  animationTimeline[0][16] = 'N3.show();N3.animate();N4.show();N4.animate();'
  animationTimeline[0][30] = 'NAP1.show();NAP1.animate();NLK1.show();'
  animationTimeline[0][40] = 'OV.hide();'
  animationTimeline[0][150] = 'Text2.show(); Text2.animate();Text3.show(); Text3.animate();'


startTimeline(0);

}

function initAnimationNavC() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();

  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 80, 80, 'null', '-10,120,50,-50');
  Text1W = new animatedObject('Logo1W', 'no', 80, 80, 'null', '-13,117,47,-47');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'OV.show();N3.show();N3.animate();N4.show();N4.animate();NLK1.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] = 'OV.hide();N1A.hide();'


startTimeline(0);

}

function initAnimationNavL1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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', '-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();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();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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,-282,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', '-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();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();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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,-282,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', '-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();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();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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', '-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();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();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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', '-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();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();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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();
  
  ImageJ = new animatedObject('Jellyfish', 'yes', 200, 200, 'null', '200,250,200,75');
  Text1B = new animatedObject('Logo1B', 'no', 60, 60, 'null', '50,120,-10,-10');
  Text1W = new animatedObject('Logo1W', 'no', 60, 60, 'null', '47,117,-13,-7');
  Text1R = new animatedObject('Logo1R', 'no', 40, 40, 'null', '777,357,-33,17');
  Text2 = new animatedObject('Next', 'no', 40, 40, 'null', '-70,120,-10,220');
  Text3 = new animatedObject('NextS', 'no', 40, 40, 'null', '-70,120,-7,223');
  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);

// -->




