// JavaScript Document

var Quotation=new Array() 

Quotation[0] = '<p>&ldquo;Good business leaders create a vision, articulate the vision, passionately own the vision, and relentlessly drive it to completion.&rdquo;</p><span class="quote_name">- Jack Welch</span>';

Quotation[1] = '<p>&ldquo;Failure is simply the opportunity to begin again, this time more intelligently.&rdquo;</p><span class="quote_name">- Henry Ford</span>';

Quotation[2] = '<p>&ldquo;Whenever you see a successful business, someone once made a courageous decision.&rdquo;</p><span class="quote_name">- Peter F. Drucker</span>';

Quotation[3] = '<p>&ldquo;Our business in life is not to get ahead of others, but to get ahead of ourselves.&rdquo;</p><span class="quote_name">- E. Joseph Cossman.</span>';

Quotation[4] = '<p>&ldquo;If there is a trait which does characterize leaders it is opportunism. Successful people are very often those who steadfastly refuse to be daunted by disadvantage and have the ability to turn disadvantage to good effect. They are people who seize opportunity and take risks. Leadership then seems to be a matter of personality and character.&rdquo;</p><span class="quote_name">- John Viney</span>';

Quotation[5] = '<p>&ldquo;Everyone who&acute;s ever taken a shower has an idea. It&acute;s the person who gets out of the shower, dries off and does something about it who makes a difference.&rdquo;</p><span class="quote_name">- Nolan Bushnell&cedil; Founder of Atari</span>';

Quotation[6] = '<p>&ldquo;Execution is the ability to mesh strategy with reality&cedil; align people with goals&cedil; and achieve the promised results.&rdquo;</p><span class="quote_name">- Larry Bossidy</span>';

Quotation[7] = '<p>&ldquo;Sometimes we have the dream but we are not ourselves ready for the dream. We have to grow to meet it.&rdquo;</p><span class="quote_name">- Louis L&acute;Amour</span>';

Quotation[8] = '<p>&ldquo;A leader has the vision and conviction that a dream can be achieved. He inspires the power and energy to get it done.&rdquo;</p><span class="quote_name">- Ralph Lauren</span>';

Quotation[9] = '<p>&ldquo;Destiny is not a matter of chance&cedil; but of choice. Not something to wish for&cedil; but to attain.&rdquo;</p><span class="quote_name">- William Jennings Bryan</span>';

Quotation[10] = '<p>&ldquo;Vision is the art of seeing the invisible.&rdquo;</p><span class="quote_name">- Jonathan Swift</span>';

Quotation[11] = '<p>&ldquo;The only way to predict the future is to have the power to shape it.&rdquo;</p><span class="quote_name">- Eric Hofer</span>';

Quotation[12] = '<p>&ldquo;The best reason to start an organization is to make meaning - to create a product or service to make the world a better place.&rdquo;</p><span class="quote_name">- Guy Kawasaki&cedil; entrepreneur&cedil; investor&cedil; author</span>';

Quotation[13] = '<p>&ldquo;I had to make my own living and my own opportunity! But I made it! Don&acute;t sit down and wait for the opportunities to come. Get up and make them!&rdquo;</p><span class="quote_name">- Madam C.J. Walker</span>';

Quotation[14] = '<p>&ldquo;There will come a time when big opportunities will be presented to you&cedil; and you’ve got to be in a position to take advantage of them.&rdquo;</p><span class="quote_name"> – Sam Walton</span>';

Quotation[15] = '<p>&ldquo;One can get anything if he is willing to help enough others get what they want.&rdquo;</p><span class="quote_name">- Zig Ziglar</span>';

Quotation[16] = '<p>&ldquo;You can have everything in life that you want if you will just help enough other people get what they want.&rdquo;</p><span class="quote_name">- Zig Ziglar</span>';

Quotation[17] = '<p>&ldquo;It&acute;s all about quality of life and finding a happy balance between work and friends and family.&rdquo;</p><span class="quote_name">- Philip Green </span>';

Quotation[18] = '<p>&ldquo;I work with wonderful people who support me. And&cedil; my beliefs are that the business needs to serve the family rather than the family serve the business.&rdquo;</p><span class="quote_name">- Kathy Ireland</span>';

Quotation[19] = '<p>&ldquo;Success means different things in different parts of my life&cedil; but overall if I have to define ultimately what success means.. the bottom line.. then for me it&acute;s if the family is healthy and happy.&rdquo;</p><span class="quote_name">- Dr Phil</span>';


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}

document.write('<div style="width: 180px;">')
showQuotation();
document.write('</div>')

