// Live Sliced Up Doom Bees



// comic list
// comicX=new Array("url","name of comic")



comic0 = new Array("http://junkriot.comicgen.com/","junkRIOT")				// junkriot @ gmail.com
comic1 = new Array("http://alwaysright.comicgenesis.com/","I'm Always Right")		// azrael505 @ yahoo.com
comic2 = new Array("http://gothboi.comicgenesis.com/","Mediocre Gothboi")		// mediocregothboi @ gmail.com
comic3 = new Array("http://cmd.comicgenesis.com/","Co mowilem, durniu?")		// godai @ gniazdoswiatow.net
comic4 = new Array("http://mylifeinrecords.comicgenesis.com/","My Life in Records")	// gcthomas @ illinoisalumni.org
comic5 = new Array("http://miruku.comicgenesis.com/","Emma")				// jmc04c @ fsu.edu


comictotal=6

 
	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://forums.comicgenesis.com/viewtopic.php?t=68494""><IMG SRC="http://img.photobucket.com/albums/v220/SnarkyBoojum/keen/real1.gif" border=0>');
	document.writeln('<TR><TD align="center"><SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');

	document.write('<OPTION VALUE=""> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; A Slice of Life...<\/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://cgwiki.comicgenesis.com/index.php/List_of_Dropdowns">Dropdown Directory 4.0<\/OPTION>');

document.writeln('<\/SELECT><\/TD><\/TR><\/TD><\/TR><\/FORM><\/TABLE>');




