// JavaScript Document
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

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] = "The first step to change is awareness";
Quotation[1] = "You are in charge of your mind and thoughts…";
Quotation[2] = "Some people dream of success… whilst others wake up and work hard at it";
Quotation[3] = "A coach is someone who shows you how to do or master something, whether it be to reach an important goal or to make a difficult change.";
Quotation[4] = " A coach stays with you and helps you select the goal, engage with it, progress through it, achieve it and integrate the accomplishment into your life. People need this level of care and 1-1 touch. A coach shows people how, doesn’t just tell them how";
Quotation[5] = "Don’t set your goals by what other people deem important. Only you know what is best for you.";
Quotation[6] = "To “let go” is not to regret the past but to grow and live for the future";
Quotation[7] = "You don’t have to be great to start, but you do have to start to be great - Zig Ziglar";
Quotation[8] = "Life is change. Growth is optional. Choose wisely.";
Quotation[9] = "Whatever you can dream, you can begin it";

// ======================================
// 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();
