// ==============================================
// 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] = "kim is kim";
Quotation[1] = "blue dot";
Quotation[2] = "i hate gears and fighting";
Quotation[3] = "an ill-sown garden grows dissent";
Quotation[4] = "like magic in a pint bottle";
Quotation[5] = "it was not ecstasy but it was comfort";
Quotation[6] = "journalism with pictures";
Quotation[7] = "literary journalism";
Quotation[8] = "journalism light";
Quotation[9] = "fojod";
Quotation[10] = "show me a hero and i'll write you a tragedy";
Quotation[11] = "to die will be an awfully big adventure";
Quotation[12] = "our pleasures in this world are always to be paid for";
Quotation[13] = "the nature of bad news infects the teller";
Quotation[14] = "my rank is the highest known in switzerland";
Quotation[15] = "it's an angry zoo";
Quotation[16] = "i hate sylvia plath";
Quotation[17] = "scientology's a scam";
Quotation[18] = "bochan lives";
Quotation[19] = "archimedes death ray";
Quotation[20] = "a legitimate publication";
Quotation[21] = "gao hustler rod";
Quotation[22] = "stay frosty";
Quotation[23] = "honor is your appetizer";
Quotation[24] = "the weimar republic was doomed from the start";Quotation[25] = "now comes the mystery";
Quotation[26] = "tempura is health food";
Quotation[27] = "proletarian, learn how to use your rifle";
Quotation[28] = "it's not love unless you want to cough up blood";
Quotation[29] = "we're not trying to sell you anything";
Quotation[30] = "the angels have the phone box";


// ======================================
// 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();