quotes = new Array( 
	"\"We are survival machines - robot vehicles blindly programmed to preserve the selfish molecules, known as genes.\"",
	"<br /> Richard Dawkins, <i>The Selfish Gene</i>",

	"\"So far I have not found the science<br>But the numbers keep " + 
	"on circling me\"",
	"<br />Soul Coughing, <i>So Far I Have Not Found the Science</i>",

	"\"Seamos realistas, exijamos lo impossible.\"",
	"<br />Che Quevara",

	"\"A human being is a part of a whole, called by us _universe_, a part limited in time and space. He experiences himself, " +
	"his thoughts and feelings as something separated from the rest... a kind of optical delusion of his consciousness. This delusion is a kind " +
	"of prison for us, restricting us to our personal desires and to affection for a few persons nearest to us. Our task must be to free ourselves "+
	"from this prison by widening our circle of compassion to embrace all living creatures and the whole of nature in its beauty.\"",
	"<br />Albert Einstein",

	"\"By believing passionately in something that still does not exist, we create it. The nonexistent is whatever we have not sufficiently desired.\"",
	"<br />Nikos Kazantzakis",

	"\"Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius -- and a lot of courage -- " +
	"to move in the opposite direction.\"",
	"<br />Albert Einstein",
	
	"\"I said to the almond tree, 'Friend, speak to me of God', and the almond tree blossomed.\"",
	"<br />Nikos Kazantzakis",

	"\"In order to succeed, we must first believe that we can.\"",
	"<br />Nikos Kazantzakis",

	"\"You have your brush, you have your colors, you paint paradise, then in you go.\"",
	"<br />Nikos Kazantzakis",

	"\"I am convinced that He (God) does not play dice.\"",
	"<br />Albert Einstein",
	
	"\"To talk well and eloquently is a very great art, but that an equally great one is to know the right moment to stop.\"",
	"<br />Wolfgang Amadeus Mozart",
	
	"\"Anybody can become angry - that is easy, but to be angry with the right person and to the right degree and at the right time and for " +
	"the right purpose, and in the right way - that is not within everybody's power and is not easy. \"",
	"<br />Aristotle",
	
	"\"Cure sometimes, treat often, comfort always.\"",
	"<br />Hippocrates",
	
	"\"There are in fact two things, science and opinion; the former begets knowledge, the later ignorance.\"",
	"<br />Hippocrates",	
	
	"\"If people do not believe that mathematics is simple, it is only because they do not realize how complicated life is.\"",
	"<br />John Louis von Neumann",
	
	"\"Por ti luchare por todo el carino que has puesto conmigo,<br />"+
	"Por todo tu tiempo por haber querido tenerme contigo,<br />"+
	"Y por tu calor y por tanta magia me quedo contigo,<br />"+
	"Y por tu calor y por tu carisma te llevo conmigo...\"",
	"<br />El canto del loco <i>Por ti</i>",	
	
	"\"...me regalas la vida, que sin ti yo no valgo...\"",
	"<br />El canto del loco <i>Tal como eres</i>",	
	
	"\"It is not true that people stop pursuing dreams because they grow old, they grow old because they stop pursuing dreams.\"",
	"<br />Gabriel Garcia Marquez",	

	"\"Give me a lever long enough and a place to stand, and I shall move the world\"",
	"<br />Archimedes"
);

index = 2*Math.floor(Math.random()*(quotes.length/2));
document.getElementById("quote").innerHTML = quotes[index];
document.getElementById("quotee").innerHTML = quotes[index+1];
