// The following variables setup the dropdown caption, logo, and signup page

	var caption="Fresh Keen"
	var signup="http://forums.keenspace.com/viewtopic.php?topic=20689&forum=173&27"
	var logo="gear.keenspace.com/images/scripts/freshkeen.gif"

// Add your comics here, use this as a guide:
//	comicX=new Array("url","name of comic")
//    Replace X with the next number
//    Replace url with the address of the comic
//    Replace the name with the name of the comic

	comic0 = new Array("http://onlyonecomic.com/","Only One")
        comic1 = new Array("http://cmooki.keenspace.com","Captain Mooki")
	comic2 = new Array("http://gametes.keenspace.com","Gametes")
	comic3 = new Array("http://cheeyas.keenspace.com","Cheeyaz!")
	comic4 = new Array("http://chuckoliang.keenspace.com","Legend of Chucko Liang")
	comic5 = new Array("http://lavieboheme.keenspace.com","La Vie Boheme")
	comic6 = new Array("http://wyrmeatbrain.keenspace.com","Wyrm Eat Brain")
	comic7 = new Array("http://okk.keenspace.com","Misadventures of Okk")
	comic8 = new Array("http://lostland.keenspace.com","The Lost Land")
	comic9 = new Array("http://eggsalad.keenspace.com","Life in an Eggshell")
	comic10 = new Array("http://witticisma.keenspace.com","Witticisma")
	comic11 = new Array("http://minorreality.keenspace.com","Minor Reality")
	comic12 = new Array("http://agck.keenspace.com","A Girl Called Kermit")
	comic13 = new Array("http://hesperides.keenspace.com","Nymphs of the West")
	comic14 = new Array("http://fluffychrome.keenspace.com","Fluffy Chrome")
	comic15 = new Array("http://alphamole.keenspace.com/","TANDU")
	comic16 = new Array("http://ufbt.keenspace.com/","Unfettered by Talent")
	comic17 = new Array("http://wishfulthinking.keenspace.com/","Wishful Thinking")
	comic18 = new Array("http://raye.keenspace.com/","The Couve")
	comic19 = new Array("http://insecurities.keenspace.com/","Security Blanket")
	comic20 = new Array("http://thisismylife.keenspace.com/","is is My Life")

// This should be the number of comics on your list.
comictotal=21





// 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-1); i++)
{
	r=Math.round(Math.random(comictotal-i))+i
	temp = randarray[r]
	randarray[r] = randarray[i]
	randarray[i] = temp;
}

//There's no need for the table when it's already embedded in another. JF, 3FEB2001.
document.write('<CENTER><A HREF="http://',signup,'"><IMG SRC="http://',logo,'" border=0></a>');
//document.write('<SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');
document.write('<FORM>');
document.write('<SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');
document.write('<OPTION VALUE="" SELECTED>Select a ',caption,' strip!<\/OPTION>');

for (var i=0; i<(comictotal); i++)
{
	showcomic=eval("comic"+randarray[i])
	document.write('<OPTION VALUE="',showcomic[0],'">',showcomic[1],'<\/OPTION>');
}


document.write('<\/SELECT><\/FORM>')

function goto_URL(object)
{
	window.location.href=object.options[object.selectedIndex].value;
}