quotes = new Array();
images = new Array();
titles = new Array();

quotes[0]="I joined Taos because of their great reputation, the great people and the great accounts.";
quotes[1]="I like the diverse working environments I get to experience with Taos. In my 3 years with Taos, I've been engaged with 8 companies! My Taos experience in 3 years is almost equal to my previous 10 years of work experience.";
quotes[2]="Anyone that's ever been with this company finds a way to stay in touch. We keep a reciprocal business relationship that transcends what most consultancies offer.  Anyone who's looking for a company that will be an advocate for their career should apply.";

images[0]="../img/Jason_quote.jpg";
images[1]="../img/Richard_quote.jpg";
images[2]="../img/Sean_quote.jpg";

titles[0]="-Jason, Sr. UNIX and Technical Management Consultant and Practice Leader";
titles[1]="-Richard, Sr. Windows and Networking Consultant";
titles[2]="-Sean Olson, Business Development Executive";


function quoteMover(){
	var whichquote=Math.floor(Math.random()*(quotes.length));
	//alert(whichquote);

	document.getElementById('careerquote').innerHTML = quotes[whichquote];
	//alert(quotes[whichquote]);
	
	document.getElementById('careerimg').src = images[whichquote];
	//alert(images[whichquote]);
	
	document.getElementById('careertitle').innerHTML = titles[whichquote];
	//alert(titles[whichquote]);
	
	setTimeout("quoteMover()", 10000);
}