function testimonials () {
var IntervalId = 0;
    IntervalId = setInterval ( "changeTestimonial()", 5000 );
}	
	function changeTestimonial() {
var randomnumber=Math.floor(Math.random()*5);
  if ( randomnumber == 0 )
  {
    document.getElementById("testimonial").innerHTML = "&quot;Reliable, diligent, dedicated and trustworthy individual with unique technical and creative skills.&quot;<br /><br />Maria Pombo, Senior Partner,<br />Firefox Marketing Associates (UK)";
  }
   if ( randomnumber == 1 )
  {
    document.getElementById("testimonial").innerHTML = "&quot;Excellent PSC, you hit the nail well and truly on the head! You listened and thoroughly understood what we wanted to convey; your content really brought our website life.  Thank you&quot;<br /><br />Stephen Ferrey, Director<br />Moco Development Ltd";
  }
  if ( randomnumber == 2) {
  document.getElementById("testimonial").innerHTML = "&quot;PSC helped us with a client's chaotic content, saving us a lot of grief ... Not to meniton time!.&quot;<br /><br />Lee Newell, Partner<br />Creative Hat";
  }
   if ( randomnumber == 3) {
  document.getElementById("testimonial").innerHTML = "&quot;Using the services of PSC was a valuable and beneficial exercise.  Paula's copywriting skills brought consistency to the site's content. Using her approach for the future will, I have no doubt, mean a more enjoyable experience for the customer, which will impact positively on our business&quot;<br /><br />Gary Hewitt- Head of Support<br />NWES";
  } 
    if ( randomnumber == 4) {
  document.getElementById("testimonial").innerHTML = "&quot;PSC Copywriting have been an invaluable support in developing our website to meet the needs of our clients, communicate our message clearly and enabling us to keep our website up-to-date. Reliable, efficient and easy to work with.&quot;<br /><br />Finbarr Carter<br /> Business Coach<br />BizFizz Norwich";
  }  
 
	
}