var mess = new Array(
'<img height="517" alt="Glass Ceiling" src="images/random/glassceilinglogo.gif" width="346" border="0">',
'<img height="600" alt="Boared to Tears" src="images/random/boredtotearslogo.gif" width="346" border="0">',
'<img height="483" alt="Not just a Job" src="images/random/justajoblogo.gif" width="350" border="0">');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
