var testimonials=new Array();
  testimonials[0]='<div class="dmg_layout_testimonial">"We have had a lot of compliments on the mantle over the holidays. Feel free to continue to use us as one of your happiest references!"<br /> ~ Mr. and Mrs. Ernst<br />Hudson</div><!-- End Testimonial --><div class="dmg_layout_testimonial_info">finished basement, home gym, home office & custom mantle</div><!-- End Info -->';   
  testimonials[1]='<div class="dmg_layout_testimonial">"It&#39;s great to see this house slowly transform into the 21st century! Thanks to Lee for being so considerate when working here."<br /> ~ Mr. and Mrs. Hudson<br />Chagrin Falls</div><!-- End Testimonial --><div class="dmg_layout_testimonial_info">kitchen, three bathrooms, custom entertainment center, home gym, numerous updates</div><!-- End Info -->';
  testimonials[2]='<div class="dmg_layout_testimonial">"It&#39;s reassuring to have someone who is knowledgeable and reliable, and conducts his business with integrity."<br /> ~ Mr. and Mrs. Widdowson<br />Hudson</div><!-- End Testimonial --><div class="dmg_layout_testimonial_info">Kitchen updates, replacement windows, interior painting, trim carpentry</div><!-- End Info -->';
  testimonials[3]='<div class="dmg_layout_testimonial">"Thank you for your great work, honesty, and care."<br /> ~ Mr. Song<br />Hudson</div><!-- End Testimonial --><div class="dmg_layout_testimonial_info">various updates to residence</div><!-- End Info -->';
  testimonials[4]='<div class="dmg_layout_testimonial">"I would like to thank you and your crew for how you managed the process. We appreciate your integrity and commitment to do a quality job."<br /> ~ Mr. and Mrs. Thomsen<br />Hudson</div><!-- End Testimonial --><div class="dmg_layout_testimonial_info">various updates to residence</div><!-- End Info -->';
  
var speed=8000;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showTestimonial() {

     document.getElementById("dmg_layout_testimonials_box").innerHTML=testimonials[q];
     q++;
if(q==testimonials.length) {
     q=0;
  }
}
setInterval('showTestimonial()',speed);
 