
var quotesArr = ["&quot;Our home phone numbers are on all of our business cards and we are available long after any sale&quot;",
			 	 "&quot;Good clean and well maintained yachts are my pleasure to show and sell&quot;",
				 "&quot;For 40 years my employment has been other people's enjoyment, how can I go wrong.&quot;",
				 "&quot;Our home phone numbers are on all of our business cards and we are available long after any sale&quot;",
			 	 "&quot;Good clean and well maintained yachts are my pleasure to show and sell&quot;",
			 	 ]; //and so on...
var i=0;
var interval = self.setInterval("swapQuote()", 8000)

function swapQuote() {
			if (i>(quotesArr.length-1)) {
				 i=0;
				 $("#quotes_container").html("<i>"+quotesArr[i]+"</i>");
				 }
			if (i<(quotesArr.length-1)) {
				 $("#quotes_container").html("<i>"+quotesArr[i]+"</i>");
				 }
			else {}
			i++;
};
		



	

