
var Quote=new Array()

Quote[0] = "Not unlike a tangle of string and twigs.";
Quote[1] = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.";
Quote[2] = "It's full of <a href=\"http://www.fys.ruu.nl/~thooft/Meeting.html\" target=\"_blank\">quantum black holes</a>.";
Quote[3] = "Greetings from The Humongous.";
Quote[4] = "Peace, Broseph.";
Quote[5] = "Visit my glorious and fortuitous e-commerce affiliates.";
Quote[6] = "Your mind and spirt are at odds.";
Quote[7] = "Whatever happened to <a href=\"http://www.google.com/search?hl=en&lr=&rls=GGLG%2CGGLG%3A2005-30%2CGGLG%3Aen&q=%22music+for+hackers%22\" target=\"_blank\">music-for-hackers</a>?";
Quote[8] = "ERROR: A unparamatized function call @ register 0x000ff";
Quote[9] = "teh r0xx0rz !!!!111";
Quote[10] = "blog this -------------------------->";
Quote[11] = "This Web server runs on <a href=\"http://www.quantumscientific.com/pclock.html\" target=\"_blank\">potato power</a>.";
Quote[12] = "w.t.f.b.b.q";
Quote[13] = "We are the music makers. We are the dreamers of dreams.";
Quote[14] = "The moon-earth distance varies betwen 225,745 and 251,967 mi. ";
Quote[15] = "Mercury knows many tricks.";
Quote[16] = "PLAYABILITY: 10 of 10";
Quote[17] = "Visit <a href=\"http://www.ioyu.com\" target=\"_blank\">my good friend Lee's site</a> too.";
Quote[18] = "Each round, it does an additional <strong>1d4</strong> points of damage.";
Quote[19] = "The target must pass an <i>Agility</i> check or be knocked down.";
Quote[20] = "Holy water does <strong>3d6</strong> vs. unholy creatures.";
Quote[21] = "3:00 a.m. work again   :: sigh :: ";
Quote[22] = "Do not live without <a href=\"http://www.ieinspector.com/dominspector/\" target=\"_blank\">this development tool</a>";
Quote[23] = "I think it's trying to communicate...";
Quote[24] = "fast cars && caviar || living all over the world";
Quote[25] = "It has big tires for crushing the competition.";
Quote[26] = "no crush data";
Quote[27] = "this web site is the rulez";
Quote[28] = "Any chance you can commission a couch-cushion fort?";
Quote[29] = "<a href=\"http://www.infinitecat.com/infinite/cat-html/8.html\" target=\"_blank\"><img src=\"/jforsythe/images/catprint.gif\" width=\"150\" height=\"15\" border=\"0\" alt=\"m3rcury wuz h3r3\" /></a>";
Quote[30] = "It [the software] logs everything you are doing.";
Quote[31] = "[detecting popup opportunities]";
Quote[32] = "Like a tiny little robot, that springs to life and makes you lunch.";
Quote[33] = "Russia is a vast country, <a href=\"http://wwp.greenwichmeantime.com/time-zone/russia/\" target=\"_blank\">covering 11 time zones.</a>";
Quote[34] = "Nuclear powered markup";
Quote[35] = "More than anything, the site wants to be a real boy";
Quote[36] = "Do you like <a href=\"http://www.ioyu.com\" target=\"_blank\">JavaScript</a>?";
Quote[37] = "It shall come out, no more!";
Quote[38] = "What do you mean \"China is here?\"";
Quote[39] = "Share it with you friends";
Quote[40] = "Pass it around, from the left-hand side";
Quote[41] = "Game on!";
Quote[42] = "OK TO USE LANE";
Quote[43] = "one click a day for better health";

function givethyquote(numtoquote) {
	if (numtoquote >= 0) {
		document.write(Quote[numtoquote]);
	} else {
		document.write(Quote[Math.round(Math.random()*(Quote.length-1))]);
	}
}

givethyquote(-1);