// JavaScript Document

	var slideShowSpeed = 20000;
	var text = new Array(); 
	
text[1]="<em>&ldquo;We purchased our Kodiak precision plasma cutting machine from CSI.The purchase and installation of the machine was handled in a <b>very professional manner</b>.When service is required; CSI works closely withus to quickly solve our problems.&rdquo;<br />&nbsp;<b>-Dennis R. Groh, Maintenance Technician for Union Metal Corporation</b></em>";
text[2]="<em>&ldquo;The experience was a good one and we would highly recommend CSI to anyone interested in a table.&rdquo; <br />&nbsp; <b>- Mark Ritchy Curry Supply Company, Curryville Pennsylvania</b></em>";
text[3]="<em>&ldquo;Cutting Systems Inc. is a <b>quality, service oriented company</b>. They were <b>extremely accommodating</b> with helping us choose the machine that would best work for our application. We purchased a Kodiak Series burn table. The installation and training were <b>excellent</b>. We have had the machine for 14 months. The few, minor problems we had were addressed in a <b>very timely</b> manner. CSI still keeps in touch with us to make sure everything is still working properly and satisfactorily.&rdquo; <br />&nbsp; <b>- Rich Evers, Evers Manufacturing Milwaukee, Wisconsin</b></em>";
text[4]="<em>&ldquo;Our <b>entire experience</b> in purchasing our two burning/plasma machines with Cutting Systems went exceptionally well! The <b>expertise</b> and <b>knowledge</b> of the entire staff helped us in <b>determining our needs</b>, as well as, provided us with a <b>competitive quotation</b>. The product delivered was (in both cases) <b>everything that we expected</b>. From the first day of installation the service and support from Cutting Systems has been <b>exceptional</b>. <b>Thanks to the entire team at CSI.</b><br />&nbsp;-<b>John Fisher, President Ideal Fabricators, Inc Livonia, Michigan</b></em>";
text[5]="<em>&ldquo;My experience with CSI was <b>fantastic</b>. Machine works <b>great!</b> The training on how to run the machine was <b>very good</b>. I don't know how we ever fabricated without this machine. I would definitely recommend working with CSI when in the market for a burning system.&rdquo; <br />&nbsp;<b>-Jesse Smith Lindsay Concrete Products Canal Fulton, Ohio</b></em>";
text[6]="<em>&ldquo;All of Loveman Steel's experiences with Cutting Systems have been excellent. The installation of our new Kodiak 10'X60' precision cutting machine and the retrofit of our existing machine with the Hypertherm HPR260 have been great.&rdquo;</em><br />&nbsp;<em><b>-Rob Loveman Vice President of Loveman Steel Corporation</b></em>";
text[7]="<em>&ldquo;We definitely enjoyed working with you guys; your job commitment and generosity is superb. We look forward to doing business with you in the future.</em><br /><em>&nbsp;<b>-Susan D. Dore Processing Manager Broussard, Louisiana</b></em>";


	var t;
	var j = 1;
	var p = text.length;
		
	var k=1;
	
	
	function runSlideShow(){
	  
	   	document.getElementById('testimonials').innerHTML =text[j];

	   j = j + 1;
	   if (j > (p-1)) j = 1;
	   t = setTimeout('runSlideShow()', slideShowSpeed);
	}
	function pause(){
		clearTimeout(t);
		document.getElementById('controls').innerHTML='<a href="#" onClick="play();">play</a>';
	}
		function play(){
		runSlideShow();
		document.getElementById('controls').innerHTML='<a href="#" onClick="pause();">pause</a>';
	}

