$(document).ready(function () {
	createTicker();
}); 

function createTicker(){
	//set the quotes array
	tickerItems = new Array(
	'"WOW!...The staff is friendly and they give you a tour of the beds they have - pretty impressive products! Definitely the best tanning  salon to recommend to friends!??"<br/><b></b>', 
	'"This is a FANTASTIC tanning salon. Everything is really clean, it is open all of the time and there is never a wait!"<br/><b></b>', 
	'"This is the best tanning salon I have ever been to. The atmosphere is beautiful, the beds make you brown (not orange), and it is open 24 hours!"<br/><b></b>',
	'"Boca Tanning Club is by far the most exquisite tanning  salon in all of South Florida"<br/><b></b>',
	'"If you want a great tan go to Boca Tanning."<br/><b></b>',
	'"Now that is what you call a real Tanning Salon."<br/><b></b>'
	);
	i = 0;
	tickerIt();
}

function tickerIt(){
	if( i == tickerItems.length ){
		i = 0;
	}
	//change without effect
	//$('#ticker').html(tickerItems[i]);

	//change with effect
	$('#ticker').fadeOut("slow", function(){
		$(this).html(tickerItems[i]).fadeIn("slow");
		i++;
	});
	
	//repeat - change 5000 - time interval
	setTimeout("tickerIt()", 7500);
}