<!-- 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] = "The only award show for Internet sites that matters.";

quote_text[quote_text.length] = "The index of success in the global new media scene.";

quote_text[quote_text.length] = "Forget about the Emmys, right now many are buzzing about the Webbys.";

quote_text[quote_text.length] = "Celebrate sites that pave important paths to the internet's next phase.";

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

quote_text[quote_text.length] = "It's a night designed to be as dynamic as the Internet itself.";

quote_text[quote_text.length] = "An online institution for more than a decade.";

// 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] = "The Los Angeles Times";
attribution_text[attribution_text.length] = "The Guardian UK";
attribution_text[attribution_text.length] = "CNN";
attribution_text[attribution_text.length] = "The Wall Street Journal";
attribution_text[attribution_text.length] = "The New York Times";
attribution_text[attribution_text.length] = "Fox News";
attribution_text[attribution_text.length] = "CNN";

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 -->