function text() {
};

text = new text();
number = 0;

// textArray
//text[number++] = "Just because someone doesn't love you<br> the way you want them to, doesn't mean<br> they don't love you with all they have."
text[number++] = "A true friend is someone who reaches for<br> your hand and touches your heart."
text[number++] = "Never frown, even when you are sad,<br> because you never know who is falling<br> in love with your smile."
text[number++] = "To the world you may be one person, but<br> to one person you may be the world."
//text[number++] = "Maybe God wants us to meet a few wrong<br> people before meeting the right one,<br> so that when we finally meet the person, we<br> will know how to be grateful."
text[number++] = "Don't cry because it is over,<br> smile because it happened."
text[number++] = "We do not stop playing because we grow old;<br> we grow old because we stop playing."
//text[number++] = "Random text 8."
//text[number++] = "Random text 9."
//text[number++] = "Random text 10."

increment = Math.floor(Math.random() * number);

document.write(text[increment]);