//<![CDATA[
var quote=new Array();
  quote[0]='I VOTE BECAUSE ...It is my right and my duty!';    /* add as many quotes as you like!*/
  quote[1]='I VOTE BECAUSE ...My vote is significant!!';
  quote[2]='I VOTE BECAUSE ...I am an active and responsible citizen!';
  quote[3]='I VOTE BECAUSE ...I want to bring back the community to life!';
  quote[4]='I VOTE BECAUSE ...I want to design the future!';
  quote[5]='I VOTE BECAUSE ...I want to be heard!';
  quote[6]='I VOTE BECAUSE ...My future depends on the choice I do today!';
  quote[7]='I VOTE BECAUSE ...I want my children at home!';
  quote[8]='I VOTE BECAUSE ...I want to work and have a decent life!';
  quote[9]='I VOTE BECAUSE ...The future is important and belongs to us!';

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);
   
 //]]>
