 document.write('<div id="tickertape" style="position:absolute; left:300px;top:80px;width:800;height:20px;z-index:10;">');
document.write('<p id="ticker" style="color:white;"> </p>');
document.write('</div>');

 
  // Multiple lines of text are possible
  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^+
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat
  
  // Example follows (do not delete)
 //  var message = "On behalf of MSCC and Wookey Hole Caves you are invited to a preview evening of an exhibition of photographs.^" +
 //                    "on Friday Evening 18th June 2010, 7pm to 9pm in the Big Top Restaurant, Wookey Hole Caves, Wells, Somerset. ^"+
 //                    "^" ;
  
  
  
// Only Edit the message //

var  message = "Club Activities this month for your enjoyment.....^" +
                "7th September welcome back.   We start the new season with your chance to show your images taken during the summer.^"+
                 "14th September Geoff and Duncan present their images of Scotland and farther a field.^"+
                 "21st September the first competition of the season judged by YOU.^"+
                  "28th September bring your camera to Strode Leisure Centre to photograph Judo and other indoor sports.^"+
                  "^";
                
  
    // Do not change the text below //
                
  var scrollSpeed = 25;
  var lineDelay   = 3500;



  var txt  = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt  = txt + message.charAt(pos);
      ticker.innerText = txt;
      pauze  = scrollSpeed;
    }
    else {
      pauze = lineDelay;
      txt   = "";
      if (pos == message.length-1) pos = -1;
    }
    pos++;
    setTimeout("scrollText('"+pos+"')",pauze);
  }

// Remove the "//" lines below to display the message on screen //

scrollText(0);

