//Random Quote Rotator

//quote array
quoteList = new Array();
	
quoteList[0] = "Considering the complexity of our department, I thought it was amazing how you were able to get a handle on our processes so quickly. You provided the precise deliverables we requested within the time frame specified.";
quoteList[1] = "Overall – Great job from everybody. I don’t think a “consultant” project has ever gone better.";
quoteList[2] = "TSI has provided an invaluable service for Leo Burnett Technology Group. Their innovative process, technology and management solutions has dramatically improved our organization – we see the ROI everyday.";
quoteList[3] = "We’ve had a number of organizational assessment projects here during my years at Rand McNally, and in large part due to the commitment of TSI, this has been the most successful and benefit-deriving project ever.";
quoteList[4] = "TSI provided a significant amount of process, organizational and systems guidance and leadership for our corporate-wide Payroll Reengineering Task Force.";
quoteList[5] = "Your approach to tackling a difficult endeavor is exemplary and serves as a model for our Information Systems function.";
quoteList[6] = "Very good balanced perspective… knew when to get into the details and when to let go...Strong technical skills and knowledge...";
quoteList[7] = "The Process Improvement (PI) Workshop was very educational for my team.";
quoteList[8] = "The outcome of the project was full utilization of the system, 100% return on investment within 16 months ";	
	
	
//randomization
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (quoteList.length));

if (random_number == quoteList.length){random_number = 0}
	
	
//set quote
var quote = quoteList[random_number];
	