var aryQuote = new Array();

	aryQuote[0] = '"Words cannot express our gratitude to you. Thank you again and again."';
	aryQuote[1] = '"The courtesy of your staff will never be forgotten. Very commendable."';
	aryQuote[2] = '"We greatly appreciate your professionalism and determination."';
	aryQuote[3] = '"I appreciate the excellent service carried out by you on my behalf."';
	aryQuote[4] = '"Thank you for the excellent result you achieved for me"';
	aryQuote[5] = '"You have been a tower of strength throughout this time."';
	aryQuote[6] = '"You really came through"';
	
var currentPos = aryQuote.length;

function fncPullQuotes() {
	usePos = currentPos + 1;
	if (usePos >= aryQuote.length) {
		usePos = 0;
	}
	displayObj = document.getElementById('pullQuote');
	displayObj.innerHTML = aryQuote[usePos];
	currentPos = usePos;
	setTimeout("fncPullQuotes();", 8000)
}
