			function init() {
			   var manager = new jsAnimManager(26);
			   BG = document.getElementById("50thBG");  
   			   P1 = document.getElementById("phrase1");  
   			   P2 = document.getElementById("phrase2");  
   			   P3 = document.getElementById("phrase3");  

			   BG.style.position = "relative"; 
			   P1.style.position = "relative"; 
			   P2.style.position = "relative"; 
			   P3.style.position = "relative"; 

/*
				manager.registerPosition("50thBG");
				manager.registerPosition("phrase1");
				manager.registerPosition("phrase2");
				manager.registerPosition("phrase3");
			   BG.setPosition(0,0);
			   P1.setPosition(0,0);
			   P2.setPosition(0,0);
			   P3.setPosition(0,0);  
*/
			   var animBG = manager.createAnimObject("50thBG");
   			   var animP1 = manager.createAnimObject("phrase1");
   			   var animP2 = manager.createAnimObject("phrase2");
   			   var animP3 = manager.createAnimObject("phrase3");
			   /* 
			   animBG.add({property: Prop.dimension, to: new Dim(590, 220), duration:500});  
			   animP1.add({property: Prop.wait, duration: 700});
			   */
			   
			   animP1.add({property: Prop.top, to: 5, duration: 0}); 
			   animP2.add({property: Prop.top, to: 5, duration: 0}); 
			   animP3.add({property: Prop.right, to: 1500, duration: 1}); 
			   animP1.add({property: Prop.wait, duration: 100});
			   animP1.add({property: Prop.color, to: new Col(255,255,255), duration:1300, onComplete: P2in}); 
				function P2in () {
				   animP2.add({property: Prop.color, to: new Col(255,255,255), duration:1600, onComplete: Pout}); 
				}
				function Pout () {
				   animP1.add({property: Prop.wait, duration: 1000});
				   animP2.add({property: Prop.wait, duration: 1000});
				   animP1.add({property: Prop.color, to: new Col(0,0,0), duration:400});
				   animP2.add({property: Prop.color, to: new Col(0,0,0), duration:401, onComplete: prepShrink});
				}
				function prepShrink () {
				   animP1.add({property: Prop.right, to: 1500, duration: 1}); 
				   animP2.add({property: Prop.right, to: 1500, duration: 2, onComplete: P3in});  
				}
				function P3in () {
				   animP3.add({property: Prop.right, to: 0, duration: 1});  
				   animP3.add({property: Prop.top, to: -52, duration: 1});  
				   animP3.add({property: Prop.color, to: new Col(255,255,255), duration:1200}); 
				   animP3.add({property: Prop.wait, duration: 100, onComplete: Shrink});
				}
				function Shrink () {
				   animBG.add({property: Prop.dimension, to: new Dim(590, 50), duration:500});
				   animP3.add({property: Prop.top, to: -130, duration: 500}); 
				}

			   }
