quotes = new Array();
images = new Array();
titles = new Array();

quotes[0]="Our clients come to Taos for the quality of consultants we have and the relationship they get with the Account Executive. We really know the technology space, and we know the Bay Area and its culture. We've been in business for 20 years and have built a lasting reputation of excellence. You can't be in business in an area like the Bay Area without having done something right.";
quotes[1]="Some of the top benefits of working with Taos are that we are a true consulting firm which means we don't have issues with co-employment laws. And the client always has the benefit of testing our consultants with our 2 week guarantee.";
quotes[2]="We have an amazing, well-known reputation in the valley. Our name is all over the place, and it's all word of mouth.  As a sales person, the thing that makes selling easy is believing in what you have to offer, and Taos makes it very easy to do that.";

images[0]="../img/Andrea_quote.jpg";
images[1]="../img/Blanca_quote.jpg";
images[2]="../img/Sean_quote.jpg";

titles[0]="-Andrea Berman, Business Development Executive";
titles[1]="-Blanca Lebron, Business Development Executive";
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);
}
