//EDIT THE QUOTE TEXT AND HEADLINES HERE
var quoteHeadline1 = '';
var quoteText1 = 'RCS represents an independent benchmark of how we are doing in the implementation of loss control - a strategic yardstick in this business. Without it, we would run at less-than-optimal profit margins, or even at a loss. - David Evans, Risk Manager Decton, Inc.';

var quoteHeadline2 = '';
var quoteText2 = 'Our experience modifier is a .51, and the training from Risk Control Services has been a major contributor to our success. - Bob Jensen, Temp Associates';

var quoteHeadline3 = '';
var quoteText3 = 'The year prior to working with RCS, we experienced 173 reported injuries. After implementing the RCS Strategic Risk Management Program we had 66. - Michael Epstein, CEO and President CoWorx Staffing Services LLC';

var quoteHeadline4 = '';
var quoteText4 = 'Staffing firms that are WRC certified demonstrate their commitment to risk management, which will add credibility to their insurance submission. - Steve Odell, Owner Odell Studner';

//var quoteHeadline5 = '';
//var quoteText5 = 'TOPS Staffing began using a telephone prescreening process. Before the process was in place, about 80% of candidates TOPS spoke to over the phone showed up for an interview. After the prescreening process was established, the show rate dropped to 40%. The prescreening results in better candidates to present to customers. - Susie Sisk, TOPS Staffing 3/1/2006';

var speed=8000;    /*this is the time in milliseconds adjust to suit*/


//----------------------------
//DO NOT EDIT BELOW THIS LINE
//----------------------------
var setIntervalID = '';
var q=0;
var n=0;
var numOfQuotes = 3;
var quote=new Array(numOfQuotes);
for (i=0; i <numOfQuotes; i++)
	quote[i]=new Array(2);

quote[0][0]=quoteHeadline1;
quote[0][1]=quoteText1;
quote[1][0]=quoteHeadline2;
quote[1][1]=quoteText2;
quote[2][0]=quoteHeadline3;
quote[2][1]=quoteText3;
//quote[3][0]=quoteHeadline4;
//quote[3][1]=quoteText4;
//quote[4][0]=quoteHeadline5;
//quote[4][1]=quoteText5;

function showQuote(n) {
	if(n==undefined){ 
		document.getElementById("quote_headline").innerHTML=quote[q][0];
		document.getElementById("quote_text").innerHTML=quote[q][1];
		q++;	
	} else {	
		clearInterval(setIntervalID);
		document.getElementById("quote_headline").innerHTML=quote[n][0];
		document.getElementById("quote_text").innerHTML=quote[n][1];		
	}
	
	if(q==quote.length) {
		q=0;
	}

}

setIntervalID = setInterval('showQuote()',speed);
  