// 	myQuotes[0] = "An optimist falls off the Empire State Building, and after 50 floors says, 'So far so good!'";
// 	myQuotes[1] = "You can't have everything....where would you put it?";
// 	myQuotes[2] = "If you tell the truth you don't have to remember anything.";
// 	myQuotes[3] = "If you wish to live wisely, ignore sayings including this one.";
// 	myQuotes[4] = "If you can't see the bright side of life, polish the dull side.";
// 	myQuotes[5] = "When everything's coming your way, you're in the wrong lane.";

var myQuotes = new Array();
	myQuotes[0] = "71.2% of US internet users are on facebook";
	myQuotes[1] = "An estimated 57%, or 132.5 million users, login to facebook monthly";
	myQuotes[2] = "The average user spends 7 hours a month on Facebook.";

$(document).ready(function() {
	var myRandom = Math.floor(Math.random()*myQuotes.length);
	$('#myQuote').html(myQuotes[myRandom]);
});
