<!-- Begin rotating quote block -->
<!--

var quote_text = new Array();
// List of quotes to load.
// If adding new items, follow the format used below.


quote_text[quote_text.length] = "Attendees found plenty of entertainment in musical performances by Norah Jones and viral video sensation Antoine Dodson, as well in refreshingly brief five-word acceptance speeches.";

quote_text[quote_text.length] = "The Webby Awards are organized by The International Academy of Digital Arts and Sciences, and lets just say it’s made up of some serious smarty-pants.";

quote_text[quote_text.length] = "The Internet's highest honor.";

quote_text[quote_text.length] = "Sometimes, geeks can be chic.";

quote_text[quote_text.length] = "Thank God for the iPad.";

quote_text[quote_text.length] = "Everything sounds better... Auto-tuned.";


// List of quote sources
// If adding new items, remember that the order of these items match the quotes above.
var attribution_text = new Array();
attribution_text[attribution_text.length] = "Wall Street Journal";
attribution_text[attribution_text.length] = "OK! magazine";
attribution_text[attribution_text.length] = "The New York Times";
attribution_text[attribution_text.length] = "Anna Wintour accepts Webby People's Voice Award for vogue.com";
attribution_text[attribution_text.length] = "Mike McCue, founder of Flipboard, accepts Webby in Mobile News";
attribution_text[attribution_text.length] = "The Gregory Brothers accept Webby Award for Autotune The News";

var i = Math.floor(Math.random() * quote_text.length); // first item to load


function loadText() {
	document.getElementById("quote").innerHTML = "&#8220;"+quote_text[i]+"&#8221;";
	document.getElementById("attribution").innerHTML = "- "+attribution_text[i];
}


//-->
<!-- End rotating quote block -->
