var current_quote = 0;

function loadQuotes(){
	
	changeQuote();
	setInterval(changeQuote, 7000);
}

function changeQuote(){
	
	var quotes = new Array();
	quotes[0] = "\"Ron does a superb job. Hands down one of the best massages I've every had\"";
	quotes[1] = "\"The service I received was wonderful. The therapist was on time, brought everything needed for the session and was able to help me with the tension in my back\"";
	quotes[2] = "\"Awesome massage! The therapist was able to come to my hotel at the last minute. I was really sore and she was able to help me recover!\"";
	quotes[3] = "\"Very professional service. I was able to book multiple session while on a business trip and the service was fabulous\"";

	var obj = document.getElementById('quotes');
	obj.innerHTML = quotes[current_quote];
	current_quote++;
	
	if(current_quote>=quotes.length)
		current_quote = 0;
}
