// ==============================================
// 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] = "Δεν θα πας στην κηδεία του γείτονα σου; -Γιατί αυτός θα έρθει στην δική μου;";
Quotation[1] = "Σε αιτηση: AGE: 19, SEX: YES PLEASE!;"
Quotation[2] = "Η μόρφωση είναι αυτό που μένει όταν κάποιος ξεχάσει τα πάντα που έμαθε.";
Quotation[3] = "Πώς λέγεται ο ξάδερφος του ΜΙΚΥ Θεοδωράκη; ΓΚΟΥΦΙ Θεοδωράκης.";
Quotation[4] = "Πώς λέγονται τα παιδιά της Γης; ...Γήπεδα";
Quotation[5] = "Πώς λέγεται αυτή που το πρωί δουλεύει στα χωράφια και το βράδυ σε μπαρ; ... Τσάπα - Τσούλα.";
Quotation[6] = "- Γιατρέ, έχω αμνησία. - Τι έχεις? - Τι έχω?";

// ======================================
// 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();