ecco a te, c'ho smanettato un po' e credo di esserne venuto a capo
Codice HTML:
<SCRIPT LANGUAGE="Javascript">
function text() {
};
text = new text();
number = 0;
// textArray
text[number++] = "<a href='http://www.google.it'>Google</a>"
text[number++] = "<a href='http://www.tgmonline.it'>Tgmonline</a>"
text[number++] = "<a href='http://www.microsoft.com'>Microsoft</a>"
text[number++] = "<a href='http://www.google.com'>Google.com</a>"
text[number++] = "<a href='http://www.altervista.org'>Altervista</a>"
// keep adding items here...
increment = Math.floor(Math.random() * number);
document.write(text[increment]);
</SCRIPT>