<script language="JavaScript">
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================
var Quotation=new Array() // do not change this!
// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array. Remember
// to increment the Quotation[x] index!
Quotation[0] = "Like an anime, only you're in it!";
Quotation[1] = "Shio Says: Never let anyone put you in a dryer!";
Quotation[2] = "Shio means \"salt\" in Japanese, and Kosho means \"pepper\".";
Quotation[3] = "Kosho's motorcycle has a name. It's \"Grinder\".";
Quotation[4] = "You only just now realized this line is randomly generated.";
Quotation[5] = "How many times have you refreshed?";
Quotation[6] = "Seriously, stop refreshing.";
Quotation[7] = "Voted \"Most Likely to be an Anime Con\" in high school!";
Quotation[8] = "The turtle's name is Shoyu. :3";
Quotation[9] = "Kosho was originally going to be a shadowy demon creature called Nega-Shio.";
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
</script>
</font>
</center>