
<!-- 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');
  Back1 = new animatedObject('BackL', 'no', 10, 40, 'null', '-40,0,-40,0');
  ImgBC = new animatedObject('Bookcover', 'no', 10, 10, 'null', '180,80,180,80');
  ImgLogo = new animatedObject('TLogo', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgWinter = new animatedObject('Winter', 'no', 10, 25, 'null', '230,140,230,140');
  ImgBO = new animatedObject('Bookopen', 'no', 10, 10, 'null', '5,-310,5,80');
  AppC = new animatedObject('AppletC', 'no', 10, 25, 'null', '232,142,232,142');
  Pg1Pic = new animatedObject('Page1', 'no', 10, 10, 'null', '120,118,120,118');
  Pg2Pic = new animatedObject('Page2', 'no', 10, 10, 'null', '625,118,625,118');
  TP1 = new animatedObject('Poem1', 'no', 10, 10, 'null', '10,90,10,90');
  Space1 = new animatedObject('Blank2', 'no', 10, 10, 'null', '253,15,253,15');
  Space2 = new animatedObject('Block', 'no', 10, 10, 'null', '730,100,730,100');
  Text2 = new animatedObject('Move', 'no', 10, 30, 'null', '360,130,360,100');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '360,130,360,100');  
  SpaceC1 = new animatedObject('Clear1', 'no', 10, 10, 'null', '367,96,367,96');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ImgBO.show();ImgBO.animate();SpaceC1.show();'
  animationTimeline[0][16] = 'Space1.show();ImgLogoR.show();'
  animationTimeline[0][26] = 'Pg1Pic.show();Pg1Pic.animate();TP1.show();ImgBC.hide();ImgWinter.hide();'
  animationTimeline[0][28] = 'Text2.show();Text2.animate();'
  animationTimeline[0][51] = 'Pg2Pic.show();Pg2Pic.animate();ARR.show();'

startTimeline(0);
Waiting.hide();
}

function initAnimation1() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  Pg1Pic = new animatedObject('Page1', 'no', 10, 10, 'null', '120,118,120,118');
  Pg2Pic = new animatedObject('Page2', 'no', 01, 01, 'null', '625,118,625,118');
  Pg3Pic = new animatedObject('Page3', 'no', 01, 01, 'null', '160,118,625,118');  
  TP1 = new animatedObject('Poem1', 'no', 10, 10, 'null', '25,100,25,100');
  TP2 = new animatedObject('Poem2', 'no', 10, 10, 'null', '25,100,25,100');
  TP2B = new animatedObject('Poem2B', 'no', 10, 10, 'null', '25,100,25,100');
  OV1 = new animatedObject('Overlay1', 'no', 10, 10, 'null', '-40,0,-840,0');
  Text2 = new animatedObject('Move', 'no', 30, 30, 'null', '730,100,360,100');
  N1 = new animatedObject('Note1', 'no', 10, 25, 'null', '410,120,75,120');
  N2 = new animatedObject('Note2', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '360,130,360,100');  
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();N2.hide();Pg2Pic.hide();Pg3Pic.hide();Pg1Pic.show();ImgLogoR.hide();ImgLogoY.show();ImgLogoY.animate();TP1.show();TP2B.hide();TP2.hide();'
  animationTimeline[0][51] = 'Pg2Pic.show();Pg2Pic.animate();ARR.show();'



 
startTimeline(0);
Waiting.hide();
}

function initAnimation1B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Pg1Pic = new animatedObject('Page1', 'no', 10, 10, 'null', '80,118,80,118');
  TP1 = new animatedObject('Poem1', 'no', 10, 10, 'null', '25,100,25,100');
  Text2 = new animatedObject('Move', 'no', 30, 30, 'null', '730,100,360,100');
  N1 = new animatedObject('Note1', 'no', 10, 25, 'null', '410,120,75,120');
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-840,0');
  Pg2Pic = new animatedObject('Page2', 'no', 10, 10, 'null', '625,118,625,118');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '360,130,360,100');   

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP1.hide();N1.show();N1.animate();'
  animationTimeline[0][26] = 'Pg2Pic.show();Pg2Pic.animate();ARR.show();'


 startTimeline(0);

}

function initAnimation1C() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP1 = new animatedObject('Poem1', 'no', 10, 10, 'null', '25,100,25,100');
  Text2 = new animatedObject('Move', 'no', 30, 30, 'null', '730,100,360,100');
  N1 = new animatedObject('Note1', 'no', 10, 25, 'null', '410,120,75,120');
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-840,0');
  Pg2Pic = new animatedObject('Page2', 'no', 10, 10, 'null', '625,118,625,118');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'TP1.show();N1.hide();'
  animationTimeline[0][26] = 'Pg2Pic.show();Pg2Pic.animate();ARR.show();'
 
startTimeline(0);

}


function initAnimation2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  Pg1Pic = new animatedObject('Page1', 'no', 10, 10, 'null', '80,118,80,118');
  Pg2Pic = new animatedObject('Page2', 'no', 10, 10, 'null', '160,118,160,118');
  Pg3Pic = new animatedObject('Page3', 'no', 10, 10, 'null', '625,102,625,102');
  Pg4Pic = new animatedObject('Page4', 'no', 10, 10, 'null', '625,102,625,102');  
  TP1 = new animatedObject('Poem1', 'no', 10, 10, 'null', '25,100,25,100');
  TP2 = new animatedObject('Poem2', 'no', 10, 10, 'null', '25,100,25,100');
  TP2B = new animatedObject('Poem2B', 'no', 10, 10, 'null', '25,100,25,100');
  TP3 = new animatedObject('Poem3', 'no', 10, 10, 'null', '25,100,25,100');
  N3 = new animatedObject('Note3', 'no', 10, 25, 'null', '410,120,75,120');
  OV1 = new animatedObject('Overlay1', 'no', 10, 10, 'null', '-40,0,-840,0');
  Text2 = new animatedObject('Move', 'no', 30, 30, 'null', '730,100,360,100');
  N1 = new animatedObject('Note1', 'no', 10, 25, 'null', '410,120,75,120');
  N2 = new animatedObject('Note2', 'no', 10, 25, 'null', '410,120,75,120');
  Pull4 = new animatedObject('MWLogot1', 'no', 30, 30, 'null', '60,104,371,104');  
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  
  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();Pull4.hide();TP3.hide();N3.hide();Pg3Pic.hide();Pg4Pic.hide();N1.hide();N2.hide();Pg3Pic.hide();Pg1Pic.hide();TP1.hide();TP2B.hide();TP2.show();Pg2Pic.animate();Pg2Pic.show();ImgLogoR.hide();ImgLogoY.show();ImgLogoY.animate();'
  animationTimeline[0][12] = 'Text2.show();Text2.animate();'
  animationTimeline[0][51] = 'Pg3Pic.show();Pg3Pic.animate();ARR.show();'



 
startTimeline(0);

}


function initAnimation2B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP2 = new animatedObject('Poem2', 'no', 10, 10, 'null', '25,100,25,100');
  TP2B = new animatedObject('Poem2B', 'no', 10, 10, 'null', '25,100,25,100');
  Text2 = new animatedObject('Move', 'no', 30, 30, 'null', '730,100,360,100');
  Pg3Pic = new animatedObject('Page3', 'no', 10, 10, 'null', '625,102,625,102');
  N2 = new animatedObject('Note2', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP2.hide();TP2B.hide();N2.show();N2.animate();'
  animationTimeline[0][26] = 'Pg3Pic.show();Pg3Pic.animate();ARR.show();'

 
startTimeline(0);

}



function initAnimation2P() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  TP2 = new animatedObject('Poem2', 'no', 10, 10, 'null', '25,100,25,100');
  TP2B = new animatedObject('Poem2B', 'no', 10, 10, 'null', '25,100,25,100');
  OV1 = new animatedObject('Overlay1', 'no', 10, 10, 'null', '-40,0,-840,0');
  Text2 = new animatedObject('Move', 'no', 10, 10, 'null', '730,100,360,100');
  Pg3Pic = new animatedObject('Page3', 'no', 01, 01, 'null', '625,102,625,102');
  N2 = new animatedObject('Note2', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');   

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();N2.hide();TP2.hide();TP2B.show();'
  animationTimeline[0][26] = 'Pg3Pic.show();Pg3Pic.animate();ARR.show();'

 
startTimeline(0);

}

function initAnimation3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  Pg2Pic = new animatedObject('Page2', 'no', 10, 10, 'null', '160,118,160,118');
  Pg3Pic = new animatedObject('Page3', 'no', 10, 10, 'null', '160,102,160,102');
  Pg4Pic = new animatedObject('Page4', 'no', 10, 10, 'null', '625,102,625,102');
  Pg5Pic = new animatedObject('Page5', 'no', 10, 10, 'null', '625,102,625,102');  
  TP2 = new animatedObject('Poem2', 'no', 10, 10, 'null', '25,100,25,100');
  TP2B = new animatedObject('Poem2B', 'no', 10, 10, 'null', '25,100,25,100');
  TP3 = new animatedObject('Poem3', 'no', 10, 10, 'null', '25,100,25,100');
  TP4 = new animatedObject('Poem4', 'no', 10, 10, 'null', '25,100,25,100');  
  Text2 = new animatedObject('Move', 'no', 30, 30, 'null', '730,100,360,100');
  Pull4 = new animatedObject('MWLogot1', 'no', 30, 30, 'null', '60,104,367,104');
  ImgBOV = new animatedObject('BookOV', 'no', 01, 01, 'null', '57,100,57,100');
  N2 = new animatedObject('Note2', 'no', 10, 25, 'null', '410,120,75,120');
  N3 = new animatedObject('Note3', 'no', 10, 25, 'null', '410,120,75,120');
  N4 = new animatedObject('Note4', 'no', 10, 25, 'null', '410,120,75,120');  
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP4.hide();N4.hide();Pg4Pic.hide();Pg5Pic.hide();N2.hide();N3.hide();ImgBOV.animate();ImgBOV.show();TP2B.hide();TP2.hide();TP3.show();Pg2Pic.hide();Pg3Pic.animate();Pg3Pic.show();ImgLogoB.show();Text2.hide();'
  animationTimeline[0][05] = 'Pull4.show();Pull4.animate();'
  animationTimeline[0][51] = 'Pg4Pic.show();Pg4Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation3B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP3 = new animatedObject('Poem3', 'no', 10, 10, 'null', '25,100,25,100');
  Pg3Pic = new animatedObject('Page3', 'no', 10, 10, 'null', '160,102,160,102');
  Pg4Pic = new animatedObject('Page4', 'no', 10, 10, 'null', '625,102,625,102');
  N3 = new animatedObject('Note3', 'no', 10, 25, 'null', '410,120,75,120');
  Pull4 = new animatedObject('MWLogot1', 'no', 30, 30, 'null', '367,104,367,104');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP3.hide();N3.show();N3.animate();ImgBOV.hide();Pull4.animate();'
  animationTimeline[0][26] = 'Pg4Pic.show();Pg4Pic.animate();ARR.show();'

 
startTimeline(0);

}


function initAnimation4() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  Pg3Pic = new animatedObject('Page3', 'no', 10, 10, 'null', '160,118,160,118');
  Pg4Pic = new animatedObject('Page4', 'no', 10, 10, 'null', '160,102,160,102');
  Pg5Pic = new animatedObject('Page5', 'no', 10, 10, 'null', '625,102,625,102');
  TP3 = new animatedObject('Poem3', 'no', 10, 10, 'null', '25,100,25,100');
  TP4 = new animatedObject('Poem4', 'no', 10, 10, 'null', '25,100,25,100');
  Pull4 = new animatedObject('MWLogot1', 'no', 20, 20, 'null', '367,104,60,104');
  D1 = new animatedObject('elMATT1', 'no', 10, 10, 'null', '485,143,485,143');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N3 = new animatedObject('Note3', 'no', 10, 25, 'null', '410,120,75,120');
  N4 = new animatedObject('Note4', 'no', 10, 25, 'null', '410,120,75,120');
  N5 = new animatedObject('Note5', 'no', 10, 25, 'null', '410,120,75,120');
  TP5 = new animatedObject('Poem5', 'no', 10, 10, 'null', '25,100,25,100');
  Pg6Pic = new animatedObject('Page6', 'no', 10, 10, 'null', '625,102,625,102');          
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');
  
  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'Back2.hide();ARR.hide();TP5.hide();N5.hide();Pg5Pic.hide();Pg6Pic.hide();N3.hide();N4.hide();Pull4.animate();ImgBOV.show();TP3.hide();TP4.show();Pg3Pic.hide();Pg4Pic.animate();Pg4Pic.show();'
  animationTimeline[0][51] = 'Pg5Pic.show();Pg5Pic.animate();Pull4.hide();ARR.show();'

startTimeline(0);

}

function initAnimation4B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP4 = new animatedObject('Poem4', 'no', 10, 10, 'null', '25,100,25,100');
  Pg4Pic = new animatedObject('Page4', 'no', 10, 10, 'null', '160,102,160,102');
  Pg5Pic = new animatedObject('Page5', 'no', 10, 10, 'null', '625,102,625,102');
  N4 = new animatedObject('Note4', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  Pull4 = new animatedObject('MWLogot1', 'no', 20, 20, 'null', '371,104,60,104');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP4.hide();N4.show();N4.animate();ImgBOV.hide();Pull4.hide();'
  animationTimeline[0][26] = 'Pg5Pic.show();Pg5Pic.animate();ARR.show();'

 
startTimeline(0);

}

function initAnimation5() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  Pg4Pic = new animatedObject('Page4', 'no', 10, 10, 'null', '160,118,160,118');
  Pg5Pic = new animatedObject('Page5', 'no', 10, 10, 'null', '160,102,160,102');
  Pg6Pic = new animatedObject('Page6', 'no', 10, 10, 'null', '625,102,625,102');
  Pull4 = new animatedObject('MWLogot1', 'no', 20, 20, 'null', '371,104,60,104');
  MWLogo = new animatedObject('MDesign', 'no', 20, 20, 'null', '60,260,370,260');  
  TP4 = new animatedObject('Poem4', 'no', 10, 10, 'null', '25,100,25,100');
  TP5 = new animatedObject('Poem5', 'no', 10, 10, 'null', '25,100,25,100');
  N4 = new animatedObject('Note4', 'no', 10, 25, 'null', '410,120,75,120');
  N5 = new animatedObject('Note5', 'no', 10, 25, 'null', '410,120,75,120');
  N6 = new animatedObject('Note6', 'no', 10, 25, 'null', '410,120,75,120');
  TP6 = new animatedObject('Poem6', 'no', 10, 10, 'null', '25,100,25,100');
  TP6B = new animatedObject('Poem6B', 'no', 10, 10, 'null', '25,100,25,100');  
  Pg7Pic = new animatedObject('Page7', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'Back2.show();ARR.hide();MWLogo.hide();TP6.hide();TP6B.hide();N6.hide();Pg6Pic.hide();Pg7Pic.hide();N4.hide();N5.hide();Pull4.hide();TP4.hide();TP5.show();Pg4Pic.hide();Pg5Pic.animate();Pg5Pic.show();ImgLogoR.hide();ImgLogoB.hide();ImgLogoY.show();ImgLogoY.animate();'
  animationTimeline[0][51] = 'Pg6Pic.show();Pg6Pic.animate();ARR.show();'

startTimeline(0);

}

function initAnimation5B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP5 = new animatedObject('Poem5', 'no', 10, 10, 'null', '25,100,25,100');
  Pg5Pic = new animatedObject('Page5', 'no', 10, 10, 'null', '160,102,160,102');
  Pg6Pic = new animatedObject('Page6', 'no', 10, 10, 'null', '625,102,625,102');
  N5 = new animatedObject('Note5', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP5.hide();N5.show();N5.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg6Pic.show();Pg6Pic.animate();ARR.show();'

 
startTimeline(0);

}

function initAnimation6() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogo = new animatedObject('TLogo', 'no', 20, 20, 'null', '265,20,265,20');
  MWLogo = new animatedObject('MDesign', 'no', 20, 20, 'null', '60,260,370,260');
  Pg5Pic = new animatedObject('Page5', 'no', 10, 10, 'null', '160,118,160,118');
  Pg6Pic = new animatedObject('Page6', 'no', 10, 10, 'null', '160,102,160,102');
  Pg7Pic = new animatedObject('Page7', 'no', 10, 10, 'null', '625,102,625,102');
  TP5 = new animatedObject('Poem5', 'no', 10, 10, 'null', '25,100,25,100');
  TP6 = new animatedObject('Poem6', 'no', 10, 10, 'null', '25,100,25,100');
  TP6B = new animatedObject('Poem6B', 'no', 10, 10, 'null', '25,100,25,100');
  N5 = new animatedObject('Note5', 'no', 10, 25, 'null', '410,120,75,120');
  N6 = new animatedObject('Note6', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N7 = new animatedObject('Note7', 'no', 10, 25, 'null', '410,120,75,120');
  TP7 = new animatedObject('Poem7', 'no', 10, 10, 'null', '25,100,25,100');
  Pg8Pic = new animatedObject('Page8', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP7.hide();N7.hide();Pg7Pic.hide();Pg8Pic.hide();N5.hide();N6.hide();ImgBOV.show();TP6B.hide();TP5.hide();TP6.show();Pg5Pic.hide();Pg6Pic.animate();Pg6Pic.show();ImgLogoY.hide();ImgLogo.show();ImgLogo.animate();'
  animationTimeline[0][12] = 'MWLogo.show();MWLogo.animate();'
  animationTimeline[0][51] = 'Pg7Pic.show();Pg7Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation6B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP6 = new animatedObject('Poem6', 'no', 10, 10, 'null', '25,100,25,100');
  Pg6Pic = new animatedObject('Page6', 'no', 10, 10, 'null', '160,102,160,102');
  Pg7Pic = new animatedObject('Page7', 'no', 10, 10, 'null', '625,102,625,102');
  ImgLogo = new animatedObject('TLogo', 'no', 20, 20, 'null', '265,20,265,20');
  MWLogo = new animatedObject('MDesign', 'no', 20, 20, 'null', '60,260,370,260');
  N6 = new animatedObject('Note6', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  TP6B = new animatedObject('Poem6B', 'no', 10, 10, 'null', '25,100,25,100');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP6.hide();TP6B.hide();N6.show();N6.animate();ImgBOV.hide();MWLogo.hide();'
  animationTimeline[0][26] = 'Pg7Pic.show();Pg7Pic.animate();ARR.show();'

 
startTimeline(0);

}

function initAnimation6P() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP6 = new animatedObject('Poem6', 'no', 10, 10, 'null', '25,100,25,100');
  TP6B = new animatedObject('Poem6B', 'no', 10, 10, 'null', '25,100,25,100');
  MWLogo = new animatedObject('MDesign', 'no', 20, 20, 'null', '60,260,370,260');
  Pg7Pic = new animatedObject('Page7', 'no', 10, 10, 'null', '625,102,625,102');
  ImgLogo = new animatedObject('TLogo', 'no', 20, 20, 'null', '265,20,265,20');
  N6 = new animatedObject('Note6', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');   

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();N6.hide();TP6.hide();TP6B.show();'
  animationTimeline[0][26] = 'Pg7Pic.show();Pg7Pic.animate();ARR.show();'

 
startTimeline(0);

}



function initAnimation7() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogo = new animatedObject('TLogo', 'no', 10, 25, 'null', '265,90,265,20');
  MWLogo = new animatedObject('MDesign', 'no', 20, 20, 'null', '370,260,60,260');
  Pg6Pic = new animatedObject('Page6', 'no', 10, 10, 'null', '160,118,160,118');
  Pg7Pic = new animatedObject('Page7', 'no', 10, 10, 'null', '160,102,160,102');
  Pg8Pic = new animatedObject('Page8', 'no', 10, 10, 'null', '625,102,625,102');
  TP6 = new animatedObject('Poem6', 'no', 10, 10, 'null', '25,100,25,100');
  TP6B = new animatedObject('Poem6B', 'no', 10, 10, 'null', '25,100,25,100');
  TP7 = new animatedObject('Poem7', 'no', 10, 10, 'null', '25,100,25,100');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N6 = new animatedObject('Note6', 'no', 10, 25, 'null', '410,120,75,120');
  N7 = new animatedObject('Note7', 'no', 10, 25, 'null', '410,120,75,120');
  N8 = new animatedObject('Note8', 'no', 10, 25, 'null', '410,120,75,120');
  TP8 = new animatedObject('Poem8', 'no', 10, 10, 'null', '25,100,25,100');
  Pg9Pic = new animatedObject('Page9', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP8.hide();N8.hide();Pg8Pic.hide();Pg9Pic.hide();N6.hide();N7.hide();ImgBOV.show();TP6B.hide();MWLogo.animate();TP6.hide();TP7.show();Pg6Pic.hide();Pg7Pic.animate();Pg7Pic.show();ImgLogoR.show();'
  animationTimeline[0][51] = 'MWLogo.hide();Pg8Pic.show();Pg8Pic.animate();ARR.show();'

 
startTimeline(0);

}

function initAnimation7B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  TP7 = new animatedObject('Poem7', 'no', 10, 10, 'null', '25,100,25,100');
  Pg7Pic = new animatedObject('Page7', 'no', 10, 10, 'null', '160,102,160,102');
  Pg8Pic = new animatedObject('Page8', 'no', 10, 10, 'null', '625,102,625,102');
  N7 = new animatedObject('Note7', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  MWLogo = new animatedObject('MDesign', 'no', 20, 20, 'null', '370,260,60,260');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP7.hide();N7.show();N7.animate();ImgBOV.hide();MWLogo.hide();'
  animationTimeline[0][26] = 'Pg8Pic.show();Pg8Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation8() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  MWLogo = new animatedObject('MDesign', 'no', 10, 10, 'null', '-350,100,-350,100');
  Pg7Pic = new animatedObject('Page7', 'no', 10, 10, 'null', '160,118,160,118');
  Pg8Pic = new animatedObject('Page8', 'no', 10, 10, 'null', '160,102,160,102');
  Pg9Pic = new animatedObject('Page9', 'no', 10, 10, 'null', '625,102,625,102');
  TP7 = new animatedObject('Poem7', 'no', 10, 10, 'null', '25,100,25,100');
  TP8 = new animatedObject('Poem8', 'no', 10, 10, 'null', '25,100,25,100');
  N7 = new animatedObject('Note7', 'no', 10, 25, 'null', '410,120,75,120');
  N8 = new animatedObject('Note8', 'no', 10, 25, 'null', '410,120,75,120');
  N9 = new animatedObject('Note9', 'no', 10, 25, 'null', '410,120,75,120');
  TP9 = new animatedObject('Poem9', 'no', 10, 10, 'null', '25,100,25,100');
  Pg10Pic = new animatedObject('Page10', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP9.hide();N9.hide();Pg9Pic.hide();Pg10Pic.hide();N7.hide();N8.hide();MWLogo.animate();MWLogo.hide();TP7.hide();TP8.show();Pg7Pic.hide();Pg8Pic.animate();Pg8Pic.show();ImgLogoY.hide();'
  animationTimeline[0][51] = 'Pg9Pic.show();Pg9Pic.animate();ARR.show();'

startTimeline(0);

}

function initAnimation8B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP8 = new animatedObject('Poem8', 'no', 10, 10, 'null', '25,100,25,100');
  MWLogo = new animatedObject('MDesign', 'no', 10, 10, 'null', '-350,100,-350,100');
  Pg8Pic = new animatedObject('Page8', 'no', 10, 10, 'null', '160,102,160,102');
  Pg9Pic = new animatedObject('Page9', 'no', 10, 10, 'null', '625,102,625,102');
  N8 = new animatedObject('Note8', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP8.hide();N8.show();N8.animate();ImgBOV.hide();MWLogo.hide();'
  animationTimeline[0][26] = 'Pg9Pic.show();Pg9Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation9() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Pg8Pic = new animatedObject('Page8', 'no', 10, 10, 'null', '160,118,160,118');
  Pg9Pic = new animatedObject('Page9', 'no', 10, 10, 'null', '160,102,160,102');
  Pg10Pic = new animatedObject('Page10', 'no', 10, 10, 'null', '625,102,625,102');
  TP8 = new animatedObject('Poem8', 'no', 10, 10, 'null', '25,100,25,100');
  TP9 = new animatedObject('Poem9', 'no', 10, 10, 'null', '25,100,25,100');
  N8 = new animatedObject('Note8', 'no', 10, 25, 'null', '410,120,75,120');
  N9 = new animatedObject('Note9', 'no', 10, 25, 'null', '410,120,75,120');
  N10 = new animatedObject('Note10', 'no', 10, 25, 'null', '410,120,75,120');
  TP10 = new animatedObject('Poem10', 'no', 10, 10, 'null', '25,100,25,100');
  Pg11Pic = new animatedObject('Page11', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP10.hide();N10.hide();Pg10Pic.hide();Pg11Pic.hide();N8.hide();N9.hide();TP8.hide();TP9.show();Pg8Pic.hide();Pg9Pic.animate();Pg9Pic.show();'
  animationTimeline[0][51] = 'Pg10Pic.show();Pg10Pic.animate();ARR.show();'


startTimeline(0);

}

function initAnimation9B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP9 = new animatedObject('Poem9', 'no', 10, 10, 'null', '25,100,25,100');
  Pg9Pic = new animatedObject('Page9', 'no', 10, 10, 'null', '160,102,160,102');
  Pg10Pic = new animatedObject('Page10', 'no', 10, 10, 'null', '625,102,625,102');
  N9 = new animatedObject('Note9', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP9.hide();N9.show();N9.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg10Pic.show();Pg10Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation10() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  Pg9Pic = new animatedObject('Page9', 'no', 10, 10, 'null', '160,118,160,118');
  Pg10Pic = new animatedObject('Page10', 'no', 10, 10, 'null', '160,102,160,102');
  Pg11Pic = new animatedObject('Page11', 'no', 10, 10, 'null', '625,102,625,102');
  TP9 = new animatedObject('Poem9', 'no', 10, 10, 'null', '25,100,25,100');
  TP10 = new animatedObject('Poem10', 'no', 10, 10, 'null', '25,100,25,100');
  N9 = new animatedObject('Note9', 'no', 10, 25, 'null', '410,120,75,120');
  N10 = new animatedObject('Note10', 'no', 10, 25, 'null', '410,120,75,120');
  N11 = new animatedObject('Note11', 'no', 10, 25, 'null', '410,120,75,120');
  TP11 = new animatedObject('Poem11', 'no', 10, 10, 'null', '25,100,25,100');
  Pg12Pic = new animatedObject('Page12', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP11.hide();N11.hide();Pg11Pic.hide();Pg12Pic.hide();N9.hide();N10.hide();TP9.hide();TP10.show();Pg9Pic.hide();Pg10Pic.animate();Pg10Pic.show();ImgLogoR.hide();ImgLogoY.show();'
  animationTimeline[0][51] = 'Pg11Pic.show();Pg11Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation10B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP10 = new animatedObject('Poem10', 'no', 10, 10, 'null', '25,100,25,100');
  Pg10Pic = new animatedObject('Page10', 'no', 10, 10, 'null', '160,102,160,102');
  Pg11Pic = new animatedObject('Page11', 'no', 10, 10, 'null', '625,102,625,102');
  N10 = new animatedObject('Note10', 'no', 10, 25, 'null', '410,120,75,120');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP10.hide();N10.show();N10.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg11Pic.show();Pg11Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation11() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  Pg10Pic = new animatedObject('Page10', 'no', 10, 10, 'null', '160,118,160,118');
  Pg11Pic = new animatedObject('Page11', 'no', 10, 10, 'null', '160,102,160,102');
  Pg12Pic = new animatedObject('Page12', 'no', 10, 10, 'null', '625,102,625,102');
  TP10 = new animatedObject('Poem10', 'no', 10, 10, 'null', '25,100,25,100');
  TP11 = new animatedObject('Poem11', 'no', 10, 10, 'null', '25,100,25,100');
  N10 = new animatedObject('Note10', 'no', 10, 25, 'null', '410,120,75,120');
  N11 = new animatedObject('Note11', 'no', 10, 25, 'null', '410,120,75,120');
  N12 = new animatedObject('Note12', 'no', 10, 25, 'null', '410,120,75,120');
  TP12 = new animatedObject('Poem12', 'no', 10, 10, 'null', '25,100,25,100');
  Pg13Pic = new animatedObject('Page13', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP12.hide();N12.hide();Pg12Pic.hide();Pg13Pic.hide();N10.hide();N11.hide();TP10.hide();TP11.show();Pg10Pic.hide();Pg11Pic.animate();Pg11Pic.show();'
  animationTimeline[0][51] = 'Pg12Pic.show();Pg12Pic.animate();ARR.show();'


 
startTimeline(0);

}

function initAnimation11B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP11 = new animatedObject('Poem11', 'no', 10, 10, 'null', '25,100,25,100');
  Pg11Pic = new animatedObject('Page11', 'no', 10, 10, 'null', '160,102,160,102');
  Pg12Pic = new animatedObject('Page12', 'no', 10, 10, 'null', '625,102,625,102');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N11 = new animatedObject('Note11', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP11.hide();N11.show();N11.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg12Pic.show();Pg12Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation12() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogo = new animatedObject('TLogo', 'no', 10, 25, 'null', '265,90,265,20');
  Pg11Pic = new animatedObject('Page11', 'no', 10, 10, 'null', '160,118,160,118');
  Pg12Pic = new animatedObject('Page12', 'no', 10, 10, 'null', '160,102,160,102');
  Pg13Pic = new animatedObject('Page13', 'no', 10, 10, 'null', '625,102,625,102');
  TP11 = new animatedObject('Poem11', 'no', 10, 10, 'null', '25,100,25,100');
  TP12 = new animatedObject('Poem12', 'no', 10, 10, 'null', '25,100,25,100');
  N11 = new animatedObject('Note11', 'no', 10, 25, 'null', '410,120,75,120');
  N12 = new animatedObject('Note12', 'no', 10, 25, 'null', '410,120,75,120');
  N13 = new animatedObject('Note13', 'no', 10, 25, 'null', '410,120,75,120');
  TP13 = new animatedObject('Poem13', 'no', 10, 10, 'null', '25,100,25,100');
  Pg14Pic = new animatedObject('Page14', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'Back3.hide();ARR.hide();TP13.hide();N13.hide();Pg13Pic.hide();Pg14Pic.hide();N11.hide();N12.hide();TP11.hide();TP12.show();Pg11Pic.hide();Pg12Pic.animate();Pg12Pic.show();ImgLogoR.show();ImgLogoR.animate();'
  animationTimeline[0][51] = 'Pg13Pic.show();Pg13Pic.animate();ARR.show();'

startTimeline(0);

}

function initAnimation12B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP12 = new animatedObject('Poem12', 'no', 10, 10, 'null', '25,100,25,100');
  Pg12Pic = new animatedObject('Page12', 'no', 10, 10, 'null', '160,102,160,102');
  Pg13Pic = new animatedObject('Page13', 'no', 10, 10, 'null', '625,102,625,102');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N12 = new animatedObject('Note12', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP12.hide();N12.show();N12.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg13Pic.show();Pg13Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation13() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,90,265,20');
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  Pg12Pic = new animatedObject('Page12', 'no', 10, 10, 'null', '160,118,160,118');
  Pg13Pic = new animatedObject('Page13', 'no', 10, 10, 'null', '160,102,160,102');
  Pg14Pic = new animatedObject('Page14', 'no', 10, 10, 'null', '625,102,625,102');
  TP12 = new animatedObject('Poem12', 'no', 10, 10, 'null', '25,100,25,100');
  TP13 = new animatedObject('Poem13', 'no', 10, 10, 'null', '25,100,25,100');
  N12 = new animatedObject('Note12', 'no', 10, 25, 'null', '410,120,75,120');
  N13 = new animatedObject('Note13', 'no', 10, 25, 'null', '410,120,75,120');
  N14 = new animatedObject('Note14', 'no', 10, 25, 'null', '410,120,75,120');
  TP14 = new animatedObject('Poem14', 'no', 10, 10, 'null', '25,100,25,100');
  Pg15Pic = new animatedObject('Page15', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'Back3.show();ARR.hide();TP14.hide();N14.hide();Pg14Pic.hide();Pg15Pic.hide();N12.hide();N13.hide();TP12.hide();TP13.show();Pg12Pic.hide();Pg13Pic.animate();Pg13Pic.show();ImgLogoR.hide();ImgLogoB.show();'
  animationTimeline[0][51] = 'Pg14Pic.show();Pg14Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation13B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP13 = new animatedObject('Poem13', 'no', 10, 10, 'null', '25,100,25,100');
  Pg13Pic = new animatedObject('Page13', 'no', 10, 10, 'null', '160,102,160,102');
  Pg14Pic = new animatedObject('Page14', 'no', 10, 10, 'null', '625,102,625,102');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N13 = new animatedObject('Note13', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP13.hide();N13.show();N13.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg14Pic.show();Pg14Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation14() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,90,265,20');
  ImgLogoY = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,90,265,20');
  ImgLogo = new animatedObject('TLogo', 'no', 10, 25, 'null', '265,20,265,20');
  Pg13Pic = new animatedObject('Page13', 'no', 10, 10, 'null', '160,118,160,118');
  Pg14Pic = new animatedObject('Page14', 'no', 10, 10, 'null', '160,102,160,102');
  Pg15Pic = new animatedObject('Page15', 'no', 10, 10, 'null', '625,102,625,102');
  TP13 = new animatedObject('Poem13', 'no', 10, 10, 'null', '25,100,25,100');
  TP14 = new animatedObject('Poem14', 'no', 10, 10, 'null', '25,100,25,100');
  N13 = new animatedObject('Note13', 'no', 10, 25, 'null', '410,120,75,120');
  N14 = new animatedObject('Note14', 'no', 10, 25, 'null', '410,120,75,120');
  N15 = new animatedObject('Note15', 'no', 10, 25, 'null', '410,120,75,120');
  TP15 = new animatedObject('Poem15', 'no', 10, 10, 'null', '25,100,25,100');
  TP15B = new animatedObject('Poem15B', 'no', 10, 10, 'null', '25,100,25,100');  
  Pg16Pic = new animatedObject('Page16', 'no', 10, 10, 'null', '625,102,625,102');   
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP15.hide();TP15B.hide();N15.hide();Pg15Pic.hide();Pg16Pic.hide();N13.hide();N14.hide();TP13.hide();TP14.show();Pg13Pic.hide();Pg14Pic.animate();Pg14Pic.show();ImgLogoB.hide();ImgLogoY.hide();ImgLogo.animate();'
  animationTimeline[0][51] = 'Pg15Pic.show();Pg15Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation14B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP14 = new animatedObject('Poem14', 'no', 10, 10, 'null', '25,100,25,100');
  Pg14Pic = new animatedObject('Page14', 'no', 10, 10, 'null', '160,102,160,102');
  Pg15Pic = new animatedObject('Page15', 'no', 10, 10, 'null', '625,102,625,102');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N14 = new animatedObject('Note14', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP14.hide();N14.show();N14.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg15Pic.show();Pg15Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation15() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogo = new animatedObject('TLogo', 'no', 10, 25, 'null', '265,90,265,20');
  Pg14Pic = new animatedObject('Page14', 'no', 10, 10, 'null', '160,118,160,118');
  Pg15Pic = new animatedObject('Page15', 'no', 10, 10, 'null', '160,102,160,102');
  Pg16Pic = new animatedObject('Page16', 'no', 10, 10, 'null', '625,102,625,102');
  TP14 = new animatedObject('Poem14', 'no', 10, 10, 'null', '25,100,25,100');
  TP15 = new animatedObject('Poem15', 'no', 10, 10, 'null', '25,100,25,100');
  TP15B = new animatedObject('Poem15B', 'no', 10, 10, 'null', '25,100,25,100');
  N14 = new animatedObject('Note14', 'no', 10, 25, 'null', '410,120,75,120');
  N15 = new animatedObject('Note15', 'no', 10, 25, 'null', '410,120,75,120');
  N16 = new animatedObject('Note16', 'no', 10, 25, 'null', '410,120,75,120');
  TP16 = new animatedObject('Poem16', 'no', 10, 10, 'null', '25,100,25,100');
  TextR = new animatedObject('Review', 'no', 10, 10, 'null', '80,118,80,118'); 
  D1 = new animatedObject('elMATT1', 'no', 10, 10, 'null', '481,138,481,138');
  Pull16 = new animatedObject('Txt16', 'no', 10, 25, 'null', '380,317,196,317'); 
  Ext1 = new animatedObject('Exit1', 'no', 10, 10, 'null', '625,342,625,342');    
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'Back3.show();ARR.hide();Ext1.show();Pull16.hide();D1.hide();TP16.hide();N16.hide();Pg16Pic.hide();TextR.hide();N14.hide();N15.hide();TP15B.hide();TP14.hide();TP15.show();Pg14Pic.hide();Pg15Pic.animate();Pg15Pic.show();ImgLogoB.show();'
  animationTimeline[0][51] = 'Pg16Pic.show();Pg16Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation15B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP15 = new animatedObject('Poem15', 'no', 10, 10, 'null', '25,100,25,100');
  TP15B = new animatedObject('Poem15B', 'no', 10, 10, 'null', '25,100,25,100');
  Pg15Pic = new animatedObject('Page15', 'no', 10, 10, 'null', '160,102,160,102');
  Pg16Pic = new animatedObject('Page16', 'no', 10, 10, 'null', '625,102,625,102');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N15 = new animatedObject('Note15', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();TP15.hide();TP15B.hide();N15.show();N15.animate();ImgBOV.hide();'
  animationTimeline[0][26] = 'Pg16Pic.show();Pg16Pic.animate();ARR.show();'
 
startTimeline(0);

}

function initAnimation15P() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP15 = new animatedObject('Poem15', 'no', 10, 10, 'null', '25,100,25,100');
  TP15B = new animatedObject('Poem15B', 'no', 10, 10, 'null', '25,100,25,100');
  Pg16Pic = new animatedObject('Page16', 'no', 10, 10, 'null', '625,102,625,102');
  N15 = new animatedObject('Note15', 'no', 10, 25, 'null', '410,120,75,120');
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');   

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ARR.hide();N15.hide();TP15.hide();TP15B.show();'
  animationTimeline[0][26] = 'Pg16Pic.show();Pg16Pic.animate();ARR.show();'

 
startTimeline(0);

}

function initAnimation16() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Back1 = new animatedObject('BackL', 'no', 50, 50, 'null', '-40,0,-40,0');
  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  Pg15Pic = new animatedObject('Page15', 'no', 10, 10, 'null', '160,118,160,118');
  Pg16Pic = new animatedObject('Page16', 'no', 10, 10, 'null', '160,102,160,102');
  TextR = new animatedObject('Review', 'no', 10, 10, 'null', '80,118,80,118');
  TextN = new animatedObject('Next', 'no', 10, 10, 'null', '80,118,80,118');
  TP15 = new animatedObject('Poem15', 'no', 10, 10, 'null', '25,100,25,100');
  TP15B = new animatedObject('Poem15B', 'no', 10, 10, 'null', '25,100,25,100');
  TP16 = new animatedObject('Poem16', 'no', 10, 10, 'null', '25,100,25,100');
  D1 = new animatedObject('elMATT1', 'no', 01, 01, 'null', '477,136,477,136');
  Pull16 = new animatedObject('Txt16', 'no', 10, 25, 'null', '380,315,196,315');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  N15 = new animatedObject('Note15', 'no', 10, 25, 'null', '410,120,75,120');
  N16 = new animatedObject('Note16', 'no', 10, 25, 'null', '410,120,75,120');
  PgEx = new animatedObject('Exit', 'no', 10, 10, 'null', '625,342,625,342');
  PgRPic = new animatedObject('PageR', 'no', 10, 10, 'null', '80,102,80,102'); 
  Mute = new animatedObject('RMute', 'no', 10, 25, 'null', '-40,0,-40,0'); 
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-40,0');     
  ARR = new animatedObject('Arrows', 'no', 01, 01, 'null', '669,344,669,344');    

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'Back3.show();D1.animate();ARR.hide();OV1.hide();Mute.hide();PgRPic.hide();PgEx.hide();N15.hide();N16.hide();TP15B.hide();TP15.hide();TP16.show();Pg15Pic.hide();Pg16Pic.animate();Pg16Pic.show();TextN.hide();ImgLogoB.show();ImgLogoB.animate();'
  animationTimeline[0][10] = 'ImgBOV.hide();D1.show();Pull16.show();Pull16.animate();'
  animationTimeline[0][51] = 'TextR.show();Back3.hide();Back2.hide();ImgLogoB.hide();ImgLogoR.show();ImgLogoR.animate();'
 
startTimeline(0);

}

function initAnimation16B() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  TP16 = new animatedObject('Poem16', 'no', 10, 10, 'null', '25,100,25,100');
  Pg16Pic = new animatedObject('Page16', 'no', 10, 10, 'null', '160,102,160,102');
  ImgBOV = new animatedObject('BookOV', 'no', 10, 10, 'null', '57,100,57,100');
  D1 = new animatedObject('elMATT1', 'no', 10, 10, 'null', '481,138,481,138');
  Pull16 = new animatedObject('Txt16', 'no', 10, 25, 'null', '380,317,196,317');
  TextR = new animatedObject('Review', 'no', 10, 10, 'null', '80,118,80,118');
  Ext1 = new animatedObject('Exit1', 'no', 10, 10, 'null', '625,342,625,342');   
  N16 = new animatedObject('Note16', 'no', 10, 25, 'null', '410,120,75,120');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'TP16.hide();N16.show();N16.animate();ImgBOV.hide();'
  animationTimeline[0][51] = 'Pg16Pic.show();Pg16Pic.animate();TextR.show();'
 
startTimeline(0);

}

function initAnimationR() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoF = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  PgRPic = new animatedObject('PageR', 'no', 10, 10, 'null', '80,102,80,102');
  Pg16Pic = new animatedObject('Page16', 'no', 10, 10, 'null', '160,102,160,102');
  TextR = new animatedObject('Review', 'no', 10, 10, 'null', '24,118,24,118');
  TP16 = new animatedObject('Poem16', 'no', 10, 10, 'null', '25,100,25,100');
  TP1 = new animatedObject('Poem1', 'no', 10, 10, 'null', '25,100,25,100');
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-40,0');
  Mute = new animatedObject('RMute', 'no', 10, 25, 'null', '-40,0,-40,0');
  D1 = new animatedObject('elMATT1', 'no', 10, 10, 'null', '485,143,485,143');
  Pull16 = new animatedObject('Txt16', 'no', 10, 25, 'null', '380,160,190,160');
  PgEx = new animatedObject('Exit', 'no', 10, 10, 'null', '625,342,625,342');
  N16 = new animatedObject('Note16', 'no', 10, 25, 'null', '410,120,75,120');

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'N16.hide();Pull16.hide();D1.hide();TP16.hide();Pg16Pic.hide();TextR.hide();ImgLogoB.hide();ImgLogoY.hide();ImgLogoR.show();Back3.hide();Back2.hide();'
  animationTimeline[0][02] = 'PgRPic.show();PgEx.show();'
 
startTimeline(0);

}


function initAnimationR2() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoF = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-40,0');
  Mute = new animatedObject('RMute', 'no', 10, 25, 'null', '-40,0,-40,0');
  PgEx = new animatedObject('Exit', 'no', 10, 10, 'null', '625,342,625,342');  

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ImgLogoB.hide();PgEx.show();ImgLogoY.show();ImgLogoR.hide();Back3.hide();Back2.show();'
 
startTimeline(0);

}


function initAnimationR3() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoF = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-40,0');
  Mute = new animatedObject('RMute', 'no', 10, 25, 'null', '-40,0,-40,0');
  PgEx = new animatedObject('Exit', 'no', 10, 10, 'null', '625,342,625,342');  


  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'ImgLogoB.show();PgEx.show();ImgLogoY.hide();ImgLogoR.hide();Back3.show();Back2.hide();'


 
startTimeline(0);

}

function initAnimationRC() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoF = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-40,0');
  Mute = new animatedObject('RMute', 'no', 10, 25, 'null', '-40,0,-40,0');
  PgEx = new animatedObject('Exit', 'no', 10, 10, 'null', '625,342,625,342'); 

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'PgEx.show();OV1.hide();Mute.hide();'

startTimeline(0);

}


function initAnimationRM() {
  layerObj = (isNS) ? 'document' : 'document.all';
  styleObj = (isNS) ? '' : '.style';
  animationTime = new Array();
  animationTimeline = new Array();
  animatedObjects = new Object();
  

  Back2 = new animatedObject('BackF', 'no', 50, 50, 'null', '-40,0,-40,0');
  Back3 = new animatedObject('BackY', 'no', 50, 50, 'null', '-40,0,-40,0');
  ImgLogoB = new animatedObject('TLogoB', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoR = new animatedObject('TLogoR', 'no', 10, 25, 'null', '265,20,265,20');
  ImgLogoF = new animatedObject('TLogoY', 'no', 10, 25, 'null', '265,20,265,20');
  OV1 = new animatedObject('Overlay1', 'no', 10, 25, 'null', '-40,0,-40,0');
  Mute = new animatedObject('RMute', 'no', 10, 25, 'null', '-40,0,-40,0');
  PgEx = new animatedObject('Exit', 'no', 10, 10, 'null', '625,342,625,342');   

  animationTimeline[0] = new Array();
  animationTimeline[0][01] = 'PgEx.show();OV1.show();OV1.animate();Mute.show();'


 
startTimeline(0);

}



var layerObj, styleObj, totalTime, currTime;
var animationTime, animationTimeline, animatedObjects;
var bon, boff;

var isNS = (document.layers);
var isDHTML = (document.layers || document.all);

// -->




