quotes = new Array();
images = new Array();
titles = new Array();

quotes[0]="My favorite thing about working for Taos is the diversity of customers I work with. I get to see the different challenges and pain points of an IT department, but I also feel like I am part of the solution and can help make things better. I feel like I can really make a difference for an individual or an entire organization.";
quotes[1]="I wanted to move away from FTE roles to get a variety of clients and customers. It turns out I love consulting. I was drawn to Taos because of Ric & Michele.  I knew Ric because I used Taos at Clarify.";
quotes[2]="I joined Taos because of the opportunities for career growth and the excellent variety of client assignments!";
quotes[3]="All assignments have been good. Full-time employees don't treat us like 2nd class citizens. We're treated like equals. Clients are always receptive and never resentful of our help.";
quotes[4]="As a Taos consultant, you can take advantage of engagement variety and enjoy career stability at the same time. We allow you to grow as a professional, helping you to expand your knowledge in different areas and in challenging assignments." ;

images[0]="../img/Andrea_quote.jpg";
images[1]="../img/Mark_quote.jpg";
images[2]="../img/Jim_quote.jpg";
images[3]="../img/Shawn_quote.jpg";
images[4]="../img/Joseph_114.jpg";

titles[0]="-Andrea Berman, Business Development Executive";
titles[1]="-Mark, Sr. Project Management Consultant";
titles[2]="-Jim, Sr. Windows and UNIX Consultant";
titles[3]="-Shawn, Windows Desktop and Networking Consultant";
titles[4]="-Joseph Su, Recruiter";

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);
}
