	<!-- <script language="JavaScript" TYPE="text/javascript"> -->
  // writes lyric fragments
	function lyrics()
  {
    var lyric = new Array();
    lyric[0] = "Kindly leave me alone...";
    lyric[1] = "You would think that you were drowning...";
    lyric[2] = "You're just what I need right now...";
    lyric[3] = "Hold you and fly on down...";
    lyric[4] = "When it's your turn just remember to act...";
    lyric[5] = "You would break my heart just to show me that you could...";
    lyric[6] = "If we could get past this one test...";
    lyric[7] = "I would dive in the sea of despair...";
    lyric[8] = "You just shake your head, I don't understand what you're sayin'...";
    lyric[9] = "I know he could take you to the bluest skies...";
    lyric[10] = "The problem, my child, is the way you want it...";
		lyric[11] = "You're not the only on that's broken...";
		lyric[12] = "Five months of planning.  Two days of falling...";
		lyric[13] = "But I'm sure that I can feel you working your way into me.";
		lyric[14] = "Hook a brother up, when he's got to have the stuff.";
		lyric[15] = "If I followed you, would you want me to...";
		lyric[16] = "Bright sunlight in my face...";
		lyric[17] = "Bones, people now are dead, everything that makes you scared.";
		lyric[18] = "Save yourself, run away..";
		lyric[19] = "I can't believe that you could conceive...";
    
    var cycle = Math.floor(Math.random() * 20);
   
    if( lyric[cycle] != null ) 
    {
      return  lyric[cycle] ;
    }
  }
	<!-- </script> -->
