// JavaScript Document
	
var testimonial1 = '&ldquo;Wat ooit begon als een poging om onszelf te ontlasten van enkele extra werkzaamheden die we niet konden uitvoeren vanwege de krappe resourcesituatie op de Nederlandse IT-markt, heeft uiteindelijk geleid tot een echte samenwerking. Nieuwe projecten worden in nauwe samenwerking opgezet en samen beheerd. Onze klanten worden vooraf geïnformeerd over de outsourcing, en we lichten de structuur van de ontwikkelings- en de leveringsprocessen toe. Voor mij is EXECOM de volgende verdieping van ons eigen kantoor aan het worden, zonder dat er een steile trap hoeft te worden beklommen.&rdquo;<br /><br /><b>Sidney Mol<br />Projectleider, Chess ibusiness</b>';

var testimonial2 = '&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 are different companies and cultures, Chess-staff considers Execom as colleagues abroad. 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 />Projectleider, Chess ibusiness</b>';

var testimonial3 = '&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 />Vorstandsvorsitzender<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;