document.write('<div id="tickertape" style="position:absolute; left:320px;top:50px;width:800;height:20px;z-index:10;">');
document.write('<p id="ticker" style="color:white;"> </p>');
document.write('</div>');


                 
//var message = "Meetings for December involve a tri-battle with other clubs from our Federation^"+
//"The Away Day Competition on club visits this summer^" + 
//"Before our mid season break, we come together for a festive evening^" +  
//"Why not come along and join in the fun ...  ^" +
//"^";

var message = "Welcome back. Its time to get stuck into picture presentation^" + 
"and practice close up and studio photography^" + 
"Its the PGM (your chance to suggest ideas for next year's programme)^" + 
"Finally discuss what makes a good monochrome image^" + 
 "Why not come along and join in the fun ...  ^" +
"^";



  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);
  }


scrollText(0);



