text='';
attrib='';
last_number=-1;

$('document').ready(function() {
	set_testimonial();
	
	$('#testimonial').fadeIn('slow');
});

setInterval(function() {
	$('#testimonial').fadeOut('slow');
	setTimeout(function() {
		set_testimonial();
		setTimeout(function() {
			$('#testimonial').fadeIn('slow').addClass();
		}, 500);
	}, 500);		

}, 40000);


function set_testimonial() {
	random_text();
		
	$('#testimonial').html('<em>"'+text+'"</em><p class="attrib"></p>');
	$('#testimonial > p').html(attrib);
}

function random_text() {
	var all_text = new Array();
	var all_attrib = new Array();
	var ctr=0;
	
	all_text[ctr] = "Lisa Morris with Road Concierge is fantastic! She is friendly, thorough, and always puts you first priority. She is accommodating to your budget, able to find awesome hotels for my large groups, and provides this service for free! I love working with Lisa and recommend EVERYONE to call on her for your hotel accommodations whether it be individual or group! Do NOT turn her down or you will lose out on her amazing, reliable, fail-proof service! She rocks!";
	all_attrib[ctr] = "Stephen Chun<br>Tour Coordinator<br>Disney on Ice- Feld Inc.";
	ctr++;
	all_text[ctr] = "We used Road Concierge to help coordinate things for Prince's show, and I have to say that under the as-always testing circumstances when we go anywhere, we were knocked out by the personal service and attention to detail afforded us by Lisa and her organization. Thoroughly recommended!";
	all_attrib[ctr] = "Chris Reynolds<br>Production Manager<br>Prince Tours";
	ctr++;
	all_text[ctr] = "Road Concierge is one of the great new companies providing a valuable service to the entertainment industry. Unlike some of her competitors who care only for their large commissions checks, Road Concierge has proven time and again that their primary concern is getting the best rates and most comfortable housing available.";
	all_attrib[ctr] = "Karl Baudendistel<br>Company Manager<br>Touralot LP/Spamalot National Tour";
	ctr++;
	all_text[ctr] = "I cannot say enough good things about Road Concierge.  Best service, best rates, they actually UNDERSTAND what it is like on tour...highly recommended!";
	all_attrib[ctr] = "Doug Rodgers<br>Company Manager<br>Jersey Boys National Tour";
	
	do {
		var random_number = Math.floor(Math.random() * ctr);
		text=all_text[random_number];
		attrib=all_attrib[random_number];
	} while (random_number == last_number)
	last_number=random_number;
}
