var academyinfo = new Array(
"If the facts don't fit the theory, change the facts.<BR><EM>Albert Einstein</EM>",
"Do not worry about your difficulties in Mathematics. I can assure you mine are still greater.<BR><EM>Albert Einstein</EM>",
"A fool's brain digests philosophy into folly, science into superstition, and art into pedantry. Hence University education. <BR><EM>George Bernard Shaw </EM>",
"Ethical axioms are found and tested not very differently from the axioms of science. Truth is what stands the test of experience.  <BR><EM>Albert Einstein </EM>",
"Science without religion is lame, religion without science is blind.  <BR><EM>Albert Einstein </EM>",
"The most beautiful thing we can experience is the mysterious. It is the source of all true art and science.  <BR><EM>Albert Einstein </EM>",
"If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut. <BR><EM>Albert Einstein</EM>",
"There is something fascinating about science. One gets such wholesale returns of conjecture out of such a trifling investment of fact. <BR><EM>Mark Twain</EM>",
"Before God we are all equally wise - and equally foolish. <BR><EM>Albert Einstein</EM>",
"Common sense is the collection of prejudices acquired by age eighteen.  <BR><EM>Albert Einstein</EM>",
"Ethical axioms are found and tested not very differently from the axioms of science. Truth is what stands the test of experience.<BR><EM>Albert Einstein</EM>",
"Everything should be made as simple as possible, but not one bit simpler.<BR><EM>Albert Einstein</EM>",
"Imagination is more important than knowledge...<BR><EM>Albert Einstein</EM>",
"Everything that is really great and inspiring is created by the individual who can labor in freedom.<BR><EM>Albert Einstein</EM>",
"I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones.<BR><EM>Albert Einstein</EM>",
"Insanity: doing the same thing over and over again and expecting different results. <BR><EM>Albert Einstein</EM>",
"I never think of the future - it comes soon enough.  <BR><EM>Albert Einstein</EM>",
"If I had only known, I would have been a locksmith. <BR><EM>Albert Einstein</EM>",
"If you are out to describe the truth, leave elegance to the tailor. <BR><EM>Albert Einstein</EM>",
"It is the duty of every citizen according to his best capacities to give validity to his convictions in political affairs.<BR><EM>Albert Einstein</EM>"
);

var l = academyinfo.length;
var dt = new Date;
var k = dt.getYear ( ) * 10000 + dt.getMonth ( ) * 1000 + dt.getDate ( );
//alert ( l );
//alert ( k % l );
var rnd_no = k % l;//Math.round((l-1)*Math.random());
document.write(academyinfo[rnd_no]);

