quotes = new Array();
images = new Array();
titles = new Array();

quotes[0]="Most consultants really enjoy the TIV process. They like understanding where their strengths and weaknesses are so that they can focus their training. The senior candidates really enjoy talking to our Practice Leaders because they like participating in a discussion with someone so talented.";
quotes[1]="It's an intense process that's well worth it because not only are the nuts and bolts evaluated but also the soft skills. It's a great learning experience.";
quotes[2]="The TIV Process allows us to get a good overall feel of a candidate's skill set including what they can and can't do so that we can match them technically with assignments. It also helps us figure out what candidates need to do to get better and advance in their careers. It's very good at that.";
quotes[3]="The TIV is a great tool. If we didn't have this tool, how would we prove our skill sets to our clients?";
quotes[4]="Our TIV provides verification of a level of knowledge. You know that someone with a great deal of knowledge has ranked a candidate according to the technical knowledge they were able to share.";
quotes[5]="From a client perspective, the TIV allows us to effectively assess a consultant's skill set which ensures our clients that they're getting the best consultant for their engagement time after time. It's a much more comprehensive method of validating consultants' skill sets than just reading what's provided on a resume." ;

images[0]="../img/Angela_quote.jpg";
images[1]="../img/Fatima_quote.jpg";
images[2]="../img/Mike_quote.jpg";
images[3]="../img/Richard_quote.jpg";
images[4]="../img/Tizoc_quote.jpg";
images[5]="../img/Joseph_114.jpg";

titles[0]="-Angela Morris, Engagement Manager";
titles[1]="-Fatima, Recruiter and Resourcer";
titles[2]="-Mike, Sr. UNIX and Networking Consultant and Practice Leader";
titles[3]="-Richard, Sr. Windows and Networking Consultant";
titles[4]="-Tizoc, Sr. Windows Consultant and Practice Leader";
titles[5]="-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);
}
