quotes = new Array();
images = new Array();
titles = new Array();

quotes[0]="Simon and Amy brought me on, and as soon as they offered an opportunity at Citrix with a salary and good benefits, I asked where to sign. Full-time with good benefits equals no stress.";
quotes[1]="There's a feeling of emphasis and caring for the staff.  I'm an employee with benefits.  There's great camaraderie and an excellent support structure.  This is no body shop.";

images[0]="../img/Shawn_quote.jpg";
images[1]="../img/Jason_quote.jpg";

titles[0]="-Shawn, Windows Desktop and Networking Consultant";
titles[1]="-Jason, Sr. UNIX and Technical Management 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);
}