quote_text = new Array();
quote_author = new Array();


// =========================================
// Edit quotes and authors in this block.
// Please note: for single quotes, use \';

quote_text[0] = 'You were an integral part of the tour\'s success.. 135 shows.. nine months.. and four continents later.. we thank you!';
quote_author[0] = 'GEORGE MICHAEL FAITH TOUR';

quote_text[1] = 'That was a massive amount of press - thank you!';
quote_author[1] = 'DAVID COPPERFIELD';

quote_text[2] = 'Thank you for the awesome work - we wouldn\'t be where we are today without you!';
quote_author[2] = 'ANTHONY ROBBINS';

quote_text[3] = '\'I LOVED LUCY - My Friendship with Lucille Ball\' would still be sitting on bookstore shelves if not for the efforts of Lobeline Communications.';
quote_author[3] = 'AUTHOR LEE TANNEN';

quote_text[4] = 'One of the best natural promoters I have ever worked with.';
quote_author[4] = 'JAY MARCIANO - Madison Square Garden Entertainment';

quote_text[5] = 'You set a new standard for handling the interactions between television and entertainment!';
quote_author[5] = 'WMMQ TV - CHICAGO';

quote_text[6] = 'Thank you for the opportunity to work with you and your staff to make the tour of America such a wonderful experience.';
quote_author[6] = 'GARY LASHINSKY - World Famous Lipizzaner Stallions';

quote_text[7] = 'Every mention in the media from gossip columns to rave review and extensive coverage on \'Entertainment Tonight\' has been orchestrated by (Lobel\'s) hyper and hype crazed mind.';
quote_author[7] = 'WESTWORD ARTS WEEKLY';

quote_text[8] = 'You\'re the best - thanks for everything.';
quote_author[8] = 'BRAD PITT';

// =========================================


// Do not edit codes below.

quote_index = 0;
// Start the ball rolling.
getquote();

function getquote() {
	document.getElementById("quotes-block").innerHTML = "<div id=\"quote-text\">\"" + quote_text[quote_index] + "\"</div><div id=\"quote-author\">" + quote_author[quote_index] + "</div>";
	quote_index++;
	if (quote_index >= (quote_text.length))
	{
		quote_index = 0;
	}
	// Recurse.
	t=setTimeout("getquote()", 6000);
}