var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Life is a journey, it is far more important for us to enjoy the process of the journey, than to focus solely on the destination! Our character is built by the process, which equips us to enjoy the destination to the fullest.";
Quotation[1] = "Success is earned because of one's commitment, persistence and deliberate focus of action steps taken to achieve.";
Quotation[2] = "Success is earned when a driving commitment, meets persistence that is deliberately focus and empowered by planned steps of action taken to achievement.";
Quotation[3] = "What I desire for you, is an abundant life that has meaning! Fueled by your passions, driven by purpose, as you journey to greet your destiny.";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
