var mess = new Array(
'Leadership is about taking an organization to a place it would not have otherwise gone without you, in a value-added, measurable way. - George M.C. Fisher',
'I have not failed, I have found 10,000 ways that do not work. - Thomas Edison',
'If I had six hours to chop down a tree, I would spend six sharpening my axe. - Abraham Lincoln',
'It is time for us to stand and cheer for the doer, the achiever, the one who recognizes the challenge and does something about it. - Vince Lombardi',
'Tell me and I forget; show me and I remember; involve me and I understand.  - Unknown',
'We get to make a living; we give to make a life. - Winston Churchill',
'Never doubt that a small group of thoughtful, committed citizens can change the world: indeed, it is the only thing that ever has! - Margaret Mead',
'We are all motivated by a keen desire for praise, and the better a man is, the more he is inspired to glory. - Cicero',
'The main thing is to keep the main thing the main thing. - Steven Covey',
'We do not work FOR each other, we work WITH each other. - Stanley C. Gault'
);
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);