quotes = new Array();
images = new Array();
titles = new Array();

quotes[0]="I like working for Taos because of the people, lunch at the Taos office and the training. I've taken the AD class with Michael H.";
quotes[1]="I've taken a couple of classes. I took Erik's Advanced Perl Programming class which was helpful to me at Hitachi. Linux Kickstart was also quite good.";
quotes[2]="Our backend support and mentorship programs, as well as the VTC, are top benefits.  They're available at the touch of your fingers!";
quotes[3]="I like being a resource for people. I like being able to share knowledge and have peers to talk with. I like having the ability to ask questions of someone more knowledgeable. If you're hungry you have the ability to learn and be mentored.";
quotes[4]="I use Safari for online books and have checked out a book from the Taos library for my CCNA class.";
quotes[5]="I use Safari frequently to surf through books for the topics I'm interested in.";
quotes[6]="I've used the online training courses provided through Dell. In fact, I'm going through Linux courses right now.";
quotes[7]="I've used the Dell training online which is pretty good; I've started some CCNA training. There are good materials on the site, and people you can talk to at Taos to get you simulators to help you prepare for the test.";

images[0]="../img/Josh_quote.jpg";
images[1]="../img/Larry_quote.jpg";
images[2]="../img/Fatima_quote.jpg";
images[3]="../img/Tizoc_quote.jpg";
images[4]="../img/Josh_quote.jpg";
images[5]="../img/Richard_quote.jpg";
images[6]="../img/Bill_quote.jpg";
images[7]="../img/Shawn_quote.jpg";

titles[0]="-Josh, Windows Desktop Consultant";
titles[1]="-Larry, Sr. UNIX consultant";
titles[2]="-Fatima Mendoza, Recruiter and Resourcer";
titles[3]="-Tizoc, Sr. Windows Consultant";
titles[4]="-Josh, Windows Desktop Consultant";
titles[5]="-Richard, Sr. Windows and Networking Consultant";
titles[6]="-Bill, Sr. Networking Consultant";
titles[7]="-Shawn, Windows Desktop and 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);
}
