var quote=new Array();
  quote[0]='Cancer is the leading disease-related cause of death in Canadian children.  Only accidents will kill more Canadian children this year.';
  quote[1]='Each year approximately 65 children are diagnosed with cancer &ndash; <br> More than one child per week';
  quote[2]='<br>Each year approximately 400 children are diagnosed with cancer in Ontario';
  quote[3]='<br>Each year 70 children will receive treatment at the Children&rsquo;s Hospital of Eastern Ontario';
  quote[4]='<br>Childhood cancer does not discriminate and the causes are largely unknown';
  quote[5]='<br>The psychological and social impact of childhood cancer can be significant';  
  quote[6]='Candlelighters provides programs and services &quot;exclusively&quot; for children with cancer and their families';
  quote[7]='Candlelighters programs and services are aimed at alleviating both the emotional and financial stress that families deal with on a daily basis';
  quote[8]='Candlelighters works very closely with professional staff in the development of programs and services that uniquely meet the needs of children, and their families';
  quote[9]='Survivorship of childhood cancer has improved during the past 20 years. It is now 75 percent and rising';

var speed=7000;
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);