quotes = new Array();
images = new Array();
titles = new Array();

quotes[0]="I often leverage the minds of my colleagues like Tim Fewkes from the Office of the CIO. I never worry about getting in over my head because I know I have those resources to draw upon. They've always been very gracious.";
quotes[1]="The MySQL Database Office Hour topic was interesting because I had worked with it previously. Project Management was also a good topic because it helped us learn to better manage projects as an individual contributor.";
quotes[2]="The UNIX office hours are great because it's good exposure to something I don't work with directly. They allow me to increase my knowledge base in that area.";
quotes[3]="In one of our recent Office Hours we discussed virtualization and that was well-attended with about 10-15 people. The disaster recovery topic got 30-40 people to attend and that included members of the OCIO practice.";
quotes[4]="Staff Managers have access to the client so they can provide direct feedback and coaching to the consultants. I make sure consultants have access to the technical and professional tools they need and help them acclimate quickly by sharing my experience with certain client environments. I also help ensure that we're matching consultants appropriately to engagements.";
quotes[5]="It's nice to have an SM who is an independent ear, someone who's interested in my career development and someone who's an advocate for stuff I do or don't do.";
quotes[6]="The Practice Leader Office Hours are great, and the forums have been a valuable resource which provides good documentation.";
quotes[7]="Suzanne has been a great Engagement Manager. She's my link to the company and keeps me updated with what's happening at Taos.";

images[0]="../img/Mark_quote.jpg";
images[1]="../img/Allen_quote.jpg";
images[2]="../img/Dave_quote.jpg";
images[3]="../img/Mike_quote.jpg";
images[4]="../img/Angela_quote.jpg";
images[5]="../img/Jason_quote.jpg";
images[6]="../img/John_114.jpg";
images[7]="../img/Valerie_114.jpg";

titles[0]="-Mark, Sr. Project Management Consultant";
titles[1]="-Allen, Sr. UNIX and Networking Consultant";
titles[2]="-Dave, Project Management Consultant and Practice Leader";
titles[3]="-Mike, Sr. UNIX and Networking Consultant and Practice Leader";   
titles[4]="-Angela Morris, Engagement Manager";
titles[5]="-Jason, Sr. UNIX and Technical Management Consultant and Practice Leader";
titles[6]="-John, Sr. Networking Consultant";
titles[7]="-Valerie, Sr. UNIX 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);
}
