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.";
quotes[3]="My experience with Taos when I had Taos consultants working for me was great. I saw how well Taos treated their employees and the impressive skill level of the Taos consultants. So when I was looking to move to another organization, Taos was my first choice." ;
quotes[4]="I wanted to try consulting to have an opportunity to work in different environments. We also always had good success with people from Taos in the previous companies I've worked at."  ;

images[0]="../img/Jason_quote.jpg";
images[1]="../img/Richard_quote.jpg";
images[2]="../img/Sean_quote.jpg";
images[3]="../img/Brad_114.jpg";
images[4]="../img/John_114.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";
titles[3]="-Brad, Sr. UNIX, Windows and Technical Management Consultant";
titles[4]="-John, Sr. Networking Consultant";


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);
}
