// =======================================
// set the following variables
// =======================================
// Set slideShowSpeed (in milliseconds)...
var slideShowSpeed = 20000
// our testimonials...
var Testimonial = new Array()
// to add more testimonials, just continue
// the pattern, adding to the array below
Testimonial[0] = "<p>&quot;Thank you so much for your hard work in getting an awesome and professional site up and running for me. I've had numerous clients compliment me on it.&quot;</p><p>Laura Penberthy, Owner<br>Laura's Creature Feature - Pet Sitting Service</p>"
Testimonial[1] = "<p>&quot;&lt;PCS&gt; did our website from start to finish, including the recommendations for and the purchasing of the hardware for our system.  They are very professional and willing to go the extra mile for their clients.&quot;</p><p>Sandy Hammond, Co-owner<br>Pigs ina Poke</p>"
Testimonial[2] = "<p>&quot;As a Real Estate Professional, I needed a new digital camera to take images of properties. The choices were absolutely staggering. Positively Creative Solutions helped me to choose a camera that did what I needed and also provided me with some pointers on how to take better pictures for my website.&quot;</p><p>Nancy P. Nordberg, Realtor&reg;<br>NancyNordberg.com</p>"
Testimonial[3] = "<p>&quot;I love my website! &nbsp;The graphics of my work are great. &nbsp;Now I can reach people all over the country - and I just had my first national commissioned job. &nbsp;Thanks, PCS Web Design.&quot;</p><p>Donna Aldrich-Fontaine<br>Animal and Nature Artist</p>"
Testimonial[4] = "<p>&quot;Jim is a real pro. &nbsp;He is not just a skilled programmer, but also someone who really understands our business. &nbsp;Jim has played a key role in the successful design, deployment and maintenance of our customer database and e-commerce system, elements which are vital to our success.&quot;</p><p>Frank Gallinelli, CEO<br>RealData, Inc.</p>"
Testimonial[5] = "<p>&quot;Thank you for helping me to create my attractive website for my art business. &nbsp;The look is just what I was envisioning and all the contents and details are placed just the way I wanted them. &nbsp;You really have a good eye for picturing my expectations with everything we discussed on our first consultation as well as incorporating the minor details we included or excluded.&quot;</p><p>Cheryl Dahn, Artist<br>CherylDahn.com</p>"
Testimonial[6] = "<p>&quot;Thanks for all you’ve done, the process has been pretty seamless and I appreciate your professional knowledge and ability to communicate all the details to me. &nbsp;I believe having a website, especially one so well done, is instrumental to the professionalism of my business. &nbsp;Thanks again for the quick response to setting up the website and the ease in working with you.  I truly appreciate your flexibility, creative thoughts and professional delivery of a wonderful product.&quot;</p><p>Lisa M. Lee, SPHR<br>West Bay Recruitment and Training Services</p>"
Testimonial[7] = "<p>&quot;Jim I want to thank you for your very professional work. &nbsp;You understood the needs of the restaurant and picked up the concept of the project in no time. &nbsp;The whole procedure was fast as a breeze. &nbsp;Again thank you for a great designed website and for the excellent and instant tech support!!!&quot;</p><p>Apostolos Papaioannou<br>Alton Village Pizza</p>";

// =======================================
// script that handles changing the display
// (do not edit anything below this line)
// =======================================
var t
var j = 0
var p = Testimonial.length
var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new String()
   preLoad[i] = Testimonial[i]
}
function runTestimonials(){
	document.getElementById("Testimonial").innerHTML= preLoad[j]
	j = j + 1
	if (j > (p-1)) j=0
	t = setTimeout('runTestimonials()', slideShowSpeed)
}

function nextTestimonial(){
	document.getElementById("Testimonial").innerHTML= preLoad[j]
	j = j + 1
	if (j > (p-1)) j=0
}
