// Template from Pillywiggin



// comic list
// comicX=new Array("url","name of comic")



	comic0 = new Array("http://warofwinds.spiderforest.com","The War of Winds")
	comic1 = new Array("http://www.undeadfriend.com","Undead Friend ")
	comic2 = new Array("http://arcadia.comicgenesis.com/","Circle Arcadia: KotG")	 
	comic3 = new Array("http://www.eecomics.net/","Emergency Exit")		 
	comic4 = new Array("http://juathuur.spiderforest.com/","Juathuur")	
	comic5 = new Array("http://www.skyscrapersoup.com/","The Rift")  
	comic6 = new Array("http://www.heliosforsaken.com","Helios\'\ Forsaken")		
	comic7 = new Array("http://streak.comicgenesis.com/","Streak")
	comic8 = new Array("http://tyl.comicgenesis.com/","Thirty Years Later")
	comic9 = new Array("http://theskies.stillnoname.com/","Stillnoname")
	comic10 = new Array("http://elvenlacryment.com","Elven Lacryment")
	comic11 = new Array("http://gryphonsong.comicgen.com/","Tales from the City")
    comic12 = new Array("http://loot.comicgenesis.com/","1007")
	comic13 = new Array("http://rosediamond.comicgenesis.com/","Warriors of Polithia")
	comic14 = new Array("http://www.eotwcomic.com/","End of the World")
	comic15 = new Array("http://radcliffe.comicgenesis.com/","Radcliffe")
	comic16 = new Array("http://www.avernyght.com/","The Chronicles of Avernyght")


	comictotal=17

 
	function goto_URL(object) 
		{
    		window.location.href = object.options[object.selectedIndex].value;
		}



// Sets the signup page, banner and subheading

	document.writeln('<FORM><TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD align="center"><FORM><A HREF="http://warofwinds.spiderforest.com/p/dropdown.htm"><IMG SRC="http://i21.photobucket.com/albums/b260/warofwinds/creations.jpg" border=0>');
	document.writeln('<TR><TD align="center"><SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');

	document.write('<OPTION VALUE="">CREATIONS<\/OPTION>');
	document.write('<OPTION VALUE="">-----<\/OPTION>');




// Create an array equal to the number of comics

	var randarray=new Array()

	for (i=0; i<comictotal; i++)
		{
		randarray[i]=i
		}



// Randomize the array

	var i,r,tmp;
	
	for (i=0; i<(comictotal); i++)
		{
		r=Math.floor(Math.random()*(comictotal))
		temp = randarray[r]
		randarray[r] = randarray[i]
		randarray[i] = temp;
		}




for (var i=0; i<(comictotal); i++)
{
	showcomic=eval("comic"+randarray[i])
	document.writeln('<OPTION VALUE="',showcomic[0],'">',showcomic[1],'<\/OPTION>');
}



document.write('<OPTION VALUE="">-----<\/OPTION>');
document.write('<OPTION VALUE="http://warofwinds.spiderforest.com/p/dropdown.htm">Creations Directory<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');




