/* **************************************
    scrolling text message in status bar
    Author: unknown
 ***************************************/

    message     = 
	"CRD Records—a small independent recording company for people who like music^" +
	"CRD Records—for adventurous repertoire, discernment in choice of artists, and skill in recording techniques^" + 
	"CRD has an extensive catalogue of choral, instrumental and chamber music recordings by renowned artists^" +
	"For lovers of church music, CRD has a series of recordings by the acclaimed Choir of New College Oxford^" +
	"CRD also has a catalogue of vinyl LPs for specialist collectors ^" +
	"CRD recordings are available from distributors worldwide and in the UK from Regis Records^" + 
	"  "; 
    scrollSpeed = 20;
    delay = 2500;
	  // Do not change the text below //
    txt = "";
    function scrollText(pos) {
	if (message.charAt(pos) != '^') {
      		txt   = txt + message.charAt(pos);
      		status = txt;
      		pause  = scrollSpeed;
    	}
    	else {
      		pause = delay;
      		txt  = "";
      		if (pos == message.length-1) {
			pos = -1;
		}
   	 }
    pos++;
    setTimeout("scrollText('"+pos+"')",pause);
    }
    scrollText(0);
