function randgen()
	{
			
		quotes=new Array()

		quotes[1]="Reality is merely an illusion, albeit a very persistent one. -Albert Einstein "
		quotes[2]="It is hard enough to remember my opinions, without also remembering my reasons for them! -Friedrich Nietzsche"
		quotes[3]="Ten thousand fools proclaim themselves into obscurity, while one wise man forgets himself into immortality. -Martin Luther King Jr."
		quotes[4]="Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened. -Sir Winston 		Churchill"
		quotes[5]="How can I believe in God when just last week I got my tongue caught in the roller of an electric typewriter? -Woody Allen"
		quotes[6]="The most beautiful thing we can experience is the mysterious. It is the source of all true art and science. -Albert Einstein "
		quotes[7]="I am not young enough to know everything. -Oscar Wilde"
		quotes[8]="Men's natures are alike, it is their habits that carry them far apart. -Confucius"
		quotes[9]="I never think of the future - it comes soon enough. -Albert Einstein"
		quotes[10]="Courage is resistance to fear, mastery of fear - not absence of fear. -Mark Twain"

	var now=new Date()
		var num=(now.getSeconds())%10
		var num=num+1


var quote=quotes[num]
document.write(quote)



		}