p = new Array(4);
l = new Array(4);
t = new Array(4);
d = new Array(4);

p[0] = 'artists'
p[1] = 'cosplaydisasters'
p[2] = 'cosplaytips'
p[3] = 'gallery'
p[4] = 'jblog'

l[0] = '/artists'
l[1] = '/blog/category/cosplay-disasters'
l[2] = '/blog/category/cosplay-tips'
l[3] = '/gallery'
l[4] = '/blog/category/j-blog'

t[0] = "Artists"
t[1] = "Cosplay Disasters"
t[2] = "Cosplay Tips"
t[3] = "Gallery"
t[4] = "J-Blog"

d[0] = "Find out more about Cosplazy's featured artists."
d[1] = "Exposing cosplay disasters, the Cosplazy blog truly is a guilty pleasure."
d[2] = "Hey, we're here to give advice too."
d[3] = 'View con shots and photos of our costumes.'
d[4] = "Raven's blog where she rants about everything Otaku-related."

index = Math.floor(Math.random() * p.length);
document.write("<a href='http://www.cosplazy.com");
document.write(l[index]);
document.write("'><img src='http://www.cosplazy.com/images/randbanner/");
document.write(p[index]);
document.write(".gif' border='0' style='padding-bottom: 1px;' title='header=[");
document.write(t[index]);
document.write("] body=[");
document.write(d[index]);
document.write("]'></a>");
