// JavaScript Document

//<![CDATA[

var testimonial=new Array();

testimonial[0]='\"It has really opened my eyes and given me the initiative (or desire) to take action.\"';

testimonial[1]='\"YPI has taught me team building skills and the importance of vision and purpose.\"';

testimonial[2]='\"I\'ve really enjoyed how I am empowered as a teenager to make a difference.\"';  

testimonial[3]='\"YPI has had a tremendous impact on me.\"'; 

testimonial[4]='\"YPI has taught me to think outside the box.\"'; 

testimonial[5]='\"Throughout this whole experience I have learned different faces of philanthropy.\"'; 

testimonial[6]='\"YPI has definitely taught me life skills, as well as working in a team.\"';

testimonial[7]='\"YPI has not just changed my life, it\'s changed how I look at life.\"';

testimonial[8]='\"YPI has taught me that philanthropy is not an act but a state of mind!\"';

testimonial[9]='\"YPI has taught me that changing the future can be more than just a dream.\"';

testimonial[10]='\"YPI has amplified my passion for philanthropy, and shown me the ways in which I can be of service to this world.\"';

testimonial[11]='\"YPI has helped me take control in areas I thought I had no control. It has challenged us to think big and know that with hard work, anything is possible!\"';

testimonial[12]='\"Volunteering is more than just an act of charity; it is a chance to change the world.\"';

var speed=5500;    /*this is the time in milliseconds adjust to suit*/

var t=0;



function showTestimonial() {

	 randomNum = Math.floor((Math.random() * testimonial.length))

     document.getElementById("testimonials").innerHTML=testimonial[randomNum];

     randomNum++;

if(randomNum==testimonial.length) {

     randomNum=0;

  }

}

setInterval('showTestimonial()',speed);

   

 //]]>