// JavaScript Document

function randomImage(){
	images = new Array(10);
	
	images[0] = "<img src='images/welcome/catwoman.jpg' title='Catwoman' alt='' />";
	images[1] = "<img src='images/josiepussycats.jpg' title='Josie and the Pussy Cats' alt='' />";
	images[2] = "<img src='images/ghosthor.jpg' title='Ghost Rider and the Mighty Thor' alt='' />";
	images[3] = "<img src='images/wolverine.jpg' title-'Wolverine' alt='' />";
	images[4] = "<img src='images/talesfromthewhitepony/white-pony112.jpg' title='Tales from the White Pony' alt='' />";
	images[5] = "<img src='images/welcome/starwars.jpg' title='Star Wars' alt='' />";
	images[6] = "<img src='images/ninelords.jpg' title='The 12 Days of Christmas, Day 10: Nine Lords [Vader] a Leaping' alt='' />";
	images[7] = "<img src='images/talesfromthewhitepony/white-pony112.jpg' title='Safe' alt='' />";
	images[8] = "<img src='images/namorhulk.jpg' title='Namor the Sub-Mariner and the Incredible Hulk' alt='' />";
	images[9] = "<img src='images/welcome/blighter.jpg' title='Blighter' alt='' />";
	
index = Math.floor(Math.random() * images.length); document.write(images[index]);
	}

