var Testimonials = [
	['<span class="TestimonialsInc">&quot;I have been using Multi Graphics for a couple of years now for many of my printing needs. Regardless of the timelines I present or the obscurity of the requests, the team at Multi Graphics always deliver as promised. They are always a delight to work with and will remain my "go-to" printing people for future needs!&quot;</span><br><br><span class="WhiteBold11">Events & Promotions Coordinator<br />Molson Coors Canada</span>'],
	['<span class="TestimonialsInc">&quot;The real estate business is time demanding on agents. At iPro Realty we\'ve come up with a solution - our innovative iPro Concierge Service. This service offers agents time-saving communication tools, one of which is printing. Being a full service printing company, Multi Graphics Print & Litho fills that need. They work hard to make sure they\'re always competitive and on time. We look forward to a continued successful relationship.&quot;</span><br><br><span class="WhiteBold11">Administrator<br />iPro Realty Ltd.<br><a href="http://www.iprorealty.com" target="blank" class="ReadMore">www.iprorealty.com</a></span>'],
	['<span class="TestimonialsInc">&quot;Since opening our studio in Canada we\'ve gone to Multi Graphics Print & Litho for all of our print and signage needs. They\'re always brimming with great ideas and recently helped us with a last minute sign for a trade show booth at The Old Home Show. From business cards to banners - the staff at Multi Graphics has always been there to assist us.&quot;</span><br><br><span class="WhiteBold11">Art Director<br />Ashtonclarke Pressed Metal Designs<br><a href="http://www.ashtonclarke.ca" target="blank" class="ReadMore">www.ashtonclarke.ca</a></span>'],
	['<span class="TestimonialsInc">&quot;&quot;I want to take the opportunity to thank Multi Graphics Print & Litho for the great job they did on our pamphlets this year and last. The pamphlets turned out very sharp and attractive and we were pleased to mail them out to our customers. They also updated the look of our business cards with a fresh, clean appearance. The staff have been very helpful with suggestions on how to improve our print jobs...&quot; <br><a href="../about_us/testimonials.asp#Lynden" class="ReadMore">Read Testimonial</a></span><br><br><span class="WhiteBold11">Lynden Security Systems Inc.</span>'],
	['<span class="TestimonialsInc">&quot;Once again, Multi Graphics has proven why they are my "go to" printer for producing wonderful graphic pieces that make our special features at the Cottage Life Show really great. Two days before move-in for the Spring Cottage Life Show, I suddenly decided I needed some animal paw prints for the floor of our Great Outdoors feature.  With nothing but some fuzzy scanned images and an email marked urgent...&quot; <br><a href="../about_us/testimonials.asp#TheCottageLife" class="ReadMore">Read Testimonial</a></span><br><br><span class="WhiteBold11">Special Projects Manager<br />The Cottage Life Shows</span>']			// Note: no comma after last entry
	];
	
var fileInx = 0;
var fadeCnt = 10;
var fadeInc = 1;

function dispTestimonial () {
  document.getElementById("testimonials").innerHTML = Testimonials[fileInx]; // +'<p>'+fadeCnt;
  document.getElementById('testimonials').style.opacity = (fadeCnt/100).toFixed(2);
  document.getElementById('testimonials').style.filter = 'alpha(opacity=' + fadeCnt + ')';
  fadeCnt += fadeInc;
  if (fadeCnt >= 180) { fadeInc *= -1; }
  if (fadeCnt <= 0) {
	fadeInc *= -1;   
    fileInx++;
    fileInx = (fileInx % Testimonials.length);  
  }
}

window.onload = function () {
  dispTestimonial()
  setInterval("dispTestimonial()", 100);
}
