// RANDOM TEXT
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "&ldquo;The most beautiful thing we can experience is the mysterious.<br>It is the source of all true art and all science&hellip;&rdquo;<br>- Albert Einstein"
random_text[number++] = "&ldquo;Not everything that counts can be counted,<br>and not everything that can be counted counts&hellip;&rdquo;<br>- Albert Einstein"
random_text[number++] = "&ldquo;Imagination is more important than knowledge&hellip;&rdquo;<br>- Albert Einstein"
random_text[number++] = "&ldquo;Every child is an artist.<br>The problem is how to remain an artist once he grows up&hellip;&rdquo;<br>- Pablo Picasso"
random_text[number++] = "&ldquo;There are two ways to live: you can live as if nothing is a miracle;<br>you can live as if everything is a miracle&hellip;&rdquo;<br>- Albert Einstein"
random_text[number++] = "&ldquo;Love me when I least deserve it,<br>because that's when I really need it&hellip;&rdquo;<br>- Swedish proverb"

var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);
