// JavaScript Document
var mess = new Array(
'<a href="http://www.nerdelite.com/store.html"><img src="http://www.nerdelite.com/media/apparel1.gif" width="540" height="104" alt="Nerd Elite Apparel" /></a>',
'<a href="http://www.nerdelite.com/store.html"><img src="http://www.nerdelite.com/media/apparel2.gif" width="540" height="104" alt="Nerd Elite Apparel" /></a>',
'<a href="http://www.nerdelite.com/store.html"><img src="http://www.nerdelite.com/media/apparel3.gif" width="540" height="104" alt="Nerd Elite Apparel" /></a>',
'<a href="http://www.nerdelite.com/store.html"><img src="http://www.nerdelite.com/media/apparel4.gif" width="540" height="104" alt="Nerd Elite Apparel" /></a>');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);