function randomSentence() {
	var sentences = new Array(
	"Parar dá azar.",
	"Coimbra já não é mais aquela que nunca foi.",
	"Monalisa attacked with teacup.",
	"This mess we're in.",
	"Small is flexible.",
	"Big has to ask permission to change.",
	"Small can take big risks.",
	"Big has a whole lot more to lose.",
	"When small succeeds, it succeeds big.",
	"When big succeeds, it’s status quo.",
	"Small has the freedom to do things different.",
	"Small requires less resources.",
	"Small collaborates easier than big, and more smoothly too.",
	"Só a Antropofagia nos une. Socialmente. Economicamente. Filosoficamente.",
	"Tupi, or not tupi that is the question.",
	"Só me interessa o que não é meu.",
	"O que atropelava a verdade era a roupa.",
	"A reação contra o homem vestido.",
	"No país da cobra grande.",
	"Contra o mundo reversível e as idéias objetivadas.",
	"O instinto Caraíba.",
	"Contra as elites vegetais.",
	"Em comunicação com o solo.",
	"Só não há determinismo onde há mistério.",
	"Contra as sublimações antagônicas.",
	"A alegria é a prova dos nove.",
	"Suprimarnos as idéias e as outras paralisias.",
	"Afetivo, o amor. Especulativo, a ciência.",
	"La vie en close / c'est une autre chose.",
	"Write down all the things that you don't believe.",
	"Tosse, tosse, tosse.",
	"A vida inteira que podia ter sido e não foi.",
	"IKEA, please don't switch typefaces.",
	"If it ain't broke, don't fix it.",
	"If you can't fix it, don't break it.",
	"Beauty will be convulsive or not at all.",
	"Be nice or leave - thank you.",
	"And the Pursuit of Happiness.",
	"Fix your shaky hands.",
	"Get back on yourself.",
	"Give up education as a bad mistake.",
	"Give up life as a bad mistake.",
	"Transformo risco em risco."
	//a ultima frase não tem vírgula!
	);
	
	return(sentences[Math.floor(Math.random()*sentences.length)]);
}