// JavaScript Document
<!--

function text() {
};

text = new text();
number = 0;

// textArray
text[number++] = "<a href='parties.html'>Baptism<br />Gift Idea</a>"
text[number++] = "<a href='parties.html'>Baptism<br />Photo Album</a>"
text[number++] = "<a href='parties.html'>Retirement<br />Gift Idea</a>"
text[number++] = "<a href='parties.html'>Bar Mitzvah<br />Gift Idea</a>"
text[number++] = "<a href='parties.html'>Bat Mitzvah<br />Gift Idea</a>"
text[number++] = "<a href='parties.html'>Graduation<br />Gift Idea</a>"
text[number++] = "<a href='parties.html'>Graduation<br />Photo Guest Book</a>"
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(text[increment]);

//-->