// JavaScript Document
	
var testimonial1 = '&ldquo;What started out as an  attempt to offload some extra work that we couldn&rsquo;t handle ourselves because of  the tight resource situation on the Dutch IT market, has turned into real  collaboration. New projects are outlined in close cooperation and managed  together. Our clients are informed of the outsourcing beforehand and we explain  to them how the development and delivery processes are structured. For me, EXECOM  is rapidly becoming the fourth floor of our own building but for a very long  stairs.&rdquo;<br /><br /><b>Sidney Mol<br />Project Manager, Chess ibusiness</b>';

var testimonial2 = '&ldquo;EXECOM is able to supply a whole team with all necessary skills (project leader, architect, developers, tester and designer) it is possible to have EXECOM build software relatively quick and with good quality. There is no need to continuously check progress or to steer the team on a daily basis. This way of working enables EXECOM to offer fixed price projects and take responsibility for the quality and on-time delivery.&rdquo;<br /><br /><b>Maurice Gelden<br />Directeur, Account Concepts</b>';

var testimonial3 = '&ldquo;Since I started working  with Execom, the first thing that struck me was the natural and healthy way of  teaming up with Chess. Even though we&acute;re different companies and cultures,  Chess-staff considers Execom as &quot;colleagues abroad&quot;. Next to excellent  partnering, Execom has the high level skills and quality standards that Chess  requires for teaming-up and developing successfull business-critical solutions  for our fortune-100 clients.&rdquo;<br /><br /><b>Eric van der Staaij<br />Project Manager, Chess ibusiness</b>';

var testimonial4 = '&ldquo;Edge was satisfied with  EXECOM as development partner: EXECOM has high-quality developers and with a  limited set of development requirements a first alpha version was promptly  delivered.&rdquo;<br /><br /><b>Sven Wallage<br />Managing Director<br />Edge Technologies</b>';


var rotateInterval = 1000 * 30; // secundes
var testimonials; 
var i = 0;

function doTestimonials(){
	testimonials = new Array(3);
	testimonials[0] = testimonial1;
	testimonials[1] = testimonial2;
	testimonials[2] = testimonial3;

	rotateTestimonials();
}

function rotateTestimonials(){

	document.getElementById("testimonials").innerHTML = testimonials[i];
	i++;
	if(i == testimonials.length)
		i = 0;

	setTimeout("rotateTestimonials()", rotateInterval);
}
window.onload = doTestimonials;