//Create an array of images.
var ads = new Array('http://www.loveshackcomics.com/shoutboxga.jpg','http://www.crfh.net/shoutboxcrfh.png','http://ironcircus.com/mb/templar_arizona.png','http://www.loveshackcomics.com/shoutboxfans.png','http://www.loveshackcomics.com/shoutboxma3.png','http://www.loveshackcomics.com/shoutboxpna.png','http://www.loveshackcomics.com/shoutboxpap.png','http://www.loveshackcomics.com/shoutboxeeriecuties.png','http://www.loveshackcomics.com/shoutboxsp.png','http://www.loveshackcomics.com/shoutboxst.png','http://www.powernapcomic.com/shoutboxpnap.png');
var links = new Array('http://www.guildedage.net','http://www.crfh.net/','http://www.templaraz.com','http://www.faans.com/','http://www.menagea3.net/','http://www.pennyandaggie.com/','http://www.punchanpie.net/','http://www.eeriecuties.com/','http://www.somethingpositive.net/','http://www.stripteasecomic.com/','http://www.powernapcomic.com');

//Get the max length.
var max = ads.length;

//Get the random number between 1 and max length.
var num = Math.floor((Math.random() * max));

//Create variable for displaying the image.
var DisplayAd = "<table border=0 cellspacing=0 cellpadding=0><tr><td><a href=http://www.loveshackcomics.com/><img border=0 src=http://www.loveshackcomics.com/shoutbox_simple.png></A><BR><a href='" + links[num] + "'><img src='" + ads[num] + "' border=0></a></td></tr></table>";

//Display the image where the javascript is located in the html file.
document.write(DisplayAd);
