function quotes()
{
var quo=new Array(17)
quo[0]="&#8220;There is hope but not for us.&#8221;<br />&#8212;Franz Kafka"
quo[1]="&#8220;If you do not bring forth what is within you, what you do not bring forth will destroy you.&#8221;<br />&#8212;Jesus"
quo[2]="&#8220;Everything we do is futile, but we must do it anyway.&#8221;<br />&#8212;Gandhi"
quo[3]="&#8220;Whatever the self describes, describes the self.&#8221;<br />&#8212;Jacob Boehme"
quo[4]="&#8220;Why should we honor those that die upon the field of battle?  A man may show as reckless courage in entering into the abyss of himself.&#8221;<br />&#8212;William Butler Yeats"
quo[5]="&#8220;When an inner situation is not made conscious, it appears outside as fate.&#8221;<br />&#8212;Carl Jung"
quo[6]="&#8220;The torch of doubt and chaos, this is what the sage steers by.&#8221;<br />&#8212;Chuang Tzu"
quo[7]="&#8220;The dreadful has already happened.&#8221;<br />&#8212;Martin Hiedegger"
quo[8]="&#8220;I never get lost because I don't know where I'm going.&#8221;<br />&#8212;Zen Master Ikkya"
quo[9]="&#8220;The universe is unjust.  The secret of happiness is to face the fact that the world is horrible, horrible, horrible...you must feel it deeply and not brush it aside.&#8221;<br />&#8212;Bertrand Russell"
quo[10]="&#8220;No political program can ever deliver us from the malaise of existence, from our fear of death, from our thirst for the absolute.&#8221;<br />&#8212Eugene Ionesco"
quo[11]="&#8220;Face the absurdity of the human condition, not to master the chaos, but to create within it.&#8221;<br />&#8212;Simone De Beauvoir"
quo[12]="&#8220;Religion is for people afraid of going to hell.  Spirituality is for people who have already been there.&#8221;<br />&#8212;D. Creech"
quo[13]="&#8220;The truth is always revolutionary.&#8221;<br />&#8212;Antonio Gramsci"
quo[14]="&#8220;It is an illusion of youth that one can attain the universal without becoming anything in particular.&#8221;<br />&#8212Hegel"
quo[15]="&#8220;We make out of the quarrel with others, rhetoric, but of the quarrel with ourselves, poetry.&#8221;<br />&#8212;William Butler Yeats"
quo[16]="&#8220;It's the little touches that make a future solid enough to be destroyed.&#8221;<br />&#8212;William S. Burroughs"
var now=new Date();
var num=(now.getSeconds())%17;
document.write(quo[num])
}
