// JavaScript Document



var Quotation=new Array() 


Quotation[0] = "Practice random acts of kindness and senseless acts of beauty.";
Quotation[1] = "There is no predicting the future; there is only planning, based upon past observations and present preferences- Jenna Marie Tedesco 2007";
Quotation[2] = "Whatever we think about and thank about we bring about. -John Demartini";
Quotation[3] = "Leaders manage change. Managers control process. ~ Anon ";
Quotation[4] = "Go confidently in the direction of your dreams. Live the life you've imagined. -Henry David Thoreau ";
Quotation[5] = "Nothing is so praiseworthy, nothing so clearly shows a great and noble soul, as clemency and readiness to forgive.- Cicero";
Quotation[6] = "Let go of the cliff, die completely, and then come back to life-after that you cannot ever be deceived. -Zen saying";
Quotation[7] = "Never cease to be amazed by the harmony of natural law.";
Quotation[8] = "To present an adequate notion of learning one first must explain how the [person] manages to construct and invent, not merely how he repeats and copies -piaget(1970)";
Quotation[9] = "The mistakes of the past are our torches for the present";
Quotation[10] = "The quest for rational knowledge paves the path to a peaceful life";
Quotation[11] = "Through repeated interactions with others we gain much greater precision in anticipating their actions. Such anticipations are made possible beacuade individuals typically display a consistent pattern of thoughts, feelings and actions.- Stark on personality";
Quotation[12] = "Whatever you create in your life you must first create in your imagination. -Tycho Photiou";
Quotation[13] = "Success is often the result of taking a misstep in the right direction.- Al Bernstein";
Quotation[14] = "Easy doesn't do it. ";
Quotation[15] = "No great woman complains of want of opportunity.";
Quotation[16] = "In order to succeed, your desire for success should be greater than your fear of failure.- Bill Cosby";
Quotation[17] = "We've removed the ceiling above our dreams. There are no more impossible dreams.- Jesse Jackson";
Quotation[18] = "We take refuge in pride because we are afraid to tell the truth to ourselves.- Kakuzo Okakura";
Quotation[19] = "We shape clay into a pot, but it is the emptiness inside that holds whatever we want.";
Quotation[20] = "You are never given a dream without also being given the power to make it true. You may have to work for it, however.-Richard Bach";
Quotation[21] = "In this life we cannot do great things. We can only do small things with great love. ";
Quotation[22] = "Mediocrity knows nothing higher than itself, but talent instantly recognizes genius....";
Quotation[23] = "All that we are is the result of what we have thought. If a man speaks or acts with an evil thought, pain follows him. If a man speaks or acts with a pure thought, happiness follows him, like a shadow that never leaves him. - Buddha...";
Quotation[24] = "The man who does not read good books has no advantage over the man whocannot read them.- Mark Twain";
Quotation[25] = "That government is best which governs least.";
Quotation[26] = "It is our choices...that show what we truly are, far more than our abilities.- J. K. Rowling";




var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

