// JavaScript Document

function getMonthlyQuote()
{
   var month = new Array(13);
   month[0]  = '"' + "Strive not to be a success, but rather to be of value." + '"' + "  -  Albert Einstein";
   month[1]  = '"' + "Our greatest glory is not in never falling, but in getting up every time we do."  + '"' + "  -  Confucius";
   month[2]  = '"' + "Sometimes it's necessary to go a long distance out of the way in order to come back a short distance correctly."  + '"' + "  -  Edward Albee";
   month[3]  = '"' + "Some people walk in the rain, others just get wet."  + '"' + "  -  Roger Miller";
   month[4]  = '"' + "A journey of a thousand miles begins with a single step."  + '"' + "  -  Chinese Guru Laozi";
   month[5]  = '"' + "Among creatures born into chaos, a majority will imagine an order, a minority will question the order, and the rest will be pronounced insane."  + '"' + "  -  Robert Brault";
   month[6]  = '"' + "Genuine tragedies in the world are not conflicts between right and wrong.  They are conflicts between two rights."  + '"' + "  -  Georg Hegel";
   month[7]  = '"' + "The greatest griefs are those we cause ourselves."  + '"' + "  -  Sophocles ";
   month[8]  = '"' + "The only Zen you can find on the tops of mountains is the Zen you bring up there."  + '"' + "  -  Robert M. Pirsig";
   month[9]  = '"' + "Science is organized knowledge. Wisdom is organized life."  + '"' + "  -  Immanuel Kant";
   month[10] = '"' + "The obscure we see eventually.  The completely obvious, it seems, takes longer." + '"' + "  -  Edward R. Murrow";
   month[11] = '"' + "No snowflake ever falls in the wrong place." + '"' + "  -  Zen";
   var now = new Date();
   var monthnumber = now.getMonth();
   var quoteofmonth = month[monthnumber];
   var quoteString = quoteofmonth;
   return quoteString;
}

