var arQuoteArray;
arQuoteArray = new Array(3);

arQuoteArray[0] = 'Free space planning, room configuration and layout consulting!';
arQuoteArray[1] = 'Customize your folders to meet your office needs!';
arQuoteArray[2] = 'You could be filing 80% faster with no misfiles using the AAK File Method!';
arQuoteArray[3] = 'We have been providing filing solutions for over 35 years!';


var intQuoteNum = 0;
function ChangeQuote(){
	intQuoteNum++;
	if (arQuoteArray.length == intQuoteNum) {
		intQuoteNum = 0;
	}
	document.getElementById("quotes").innerHTML = arQuoteArray[intQuoteNum];
	setTimeout('ChangeQuote()',5000);	
}
setTimeout('ChangeQuote()',5000);
