//<![CDATA[
var quote=new Array();
  quote[0]='<b>March 2, 2010</b><br />Thank you for joining us at our event!<br />';    /* add as many quotes as you like!*/
  quote[1]='<b>February 25, 2010</b><br />Now, tickets available at the door only by reservation.<br />';
  quote[2]='<b>January 12, 2010</b><br />Tickets are available in American Polish Cultural Center!<br />';
  quote[3]='<b>January 10, 2010</b><br />Congratulations to all Newly Engaged couples!<br />';
  quote[4]='<b>January 5, 2010</b><br /></strong>Happy New Year!<br />';
  quote[5]='<b>November 15th 2009</b><br />Tickets go on sale.<br />';

var speed=5000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
 //]]>