// Change this text whenever you like  ;-)
message=      " ****** out now ****** ^" +
              " *** THE NOW-DENIAL -12'' *** ^" +
              " *** POTOMAC - s/t 12'' *** ^" +
              " ****** coming in 2003 ****** ^" +
              " *** FLOWER 26- WHAT HAPPENS NEXT? - s/t 7'' *** ^" +
              " *** FLOWER 27- HOLIER THAN THOU - s/t 7'' *** ^" +
              " *** FLOWER 28- BETERCORE / MY OWN LIES - split 7'' *** ^" +
              " *** FLOWER 29- ASSCHAPEL - Fire and Destruction - LP *** ^" +
              " *** FLOWER 30- DROP DEAD / STACK - split 7'' *** ^" +
              " ------------------------------------------------ ^";
              scrollSpeed = 22;
              lineDelay = 1500;


// don't change the text below
	txt      = "";
	function scrollText(pos)    
	 {
           if(message.charAt (pos) !='^')
	     {
              txt = txt + message.charAt (pos);
              status = txt;
              pauze = scrollSpeed;
             }
           else 
             {
               pauze = lineDelay;
       	       txt = "";
               if (pos == message.length-1) pos = -1
             }
           pos++;
          setTimeout ("scrollText('"+pos+"')",pauze);
         }

scrollText(0)
