
var mnQuoteIndex = 0
var maQuotes = new Array()
maQuotes[0] = "We do one thing and we do it well.<br />  We install."
maQuotes[1] = "No installation has to be done so fast that vehicle integrity and installation quality are sacrificed."
maQuotes[2] = "We have learned more from Mobile Installation Technologies about our logistics in the last 15 hours than we have in the last 6 weeks."
var mnQuoteLength = maQuotes.length

function rotateQuotes() {

	if (mnQuoteIndex==mnQuoteLength) {
		mnQuoteIndex = 0
	}			

	//Display Quote
	//window.status = "Index=" + mnQuoteIndex
	document.getElementById("quotes").innerHTML = "&quot;" + maQuotes[mnQuoteIndex] + "&quot;"
	mnQuoteIndex++;
	window.setTimeout("rotateQuotes()", 8000);
}
