var rQuotes=new Array();
var rQuotesBy=new Array();

rQuotes[0] = "If at first you do succeed, try something harder.";
rQuotesBy[0] = "Ann Landers";
rQuotes[1] = "Luck favors the mind that is prepared.";
rQuotesBy[1] = "Louis Pasteur";
rQuotes[2] = "A consumer is a statistical abstraction. A customer is a human being.";
rQuotesBy[2] = "Stanley Marcus";
rQuotes[3] = "Opportunity's favorite disguise is trouble.";
rQuotesBy[3] = "Frank Tyger";
rQuotes[4] = "Being right half the time beats being half-right all the time.";
rQuotesBy[4] = "Malcolm Forbes";
rQuotes[5] = "When things go wrong don't go with them.";
rQuotesBy[5] = "Elvis Presley";
rQuotes[6] = "You can't turn back the clock. But you can wind it up again.";
rQuotesBy[6] = "Bonnie Prudden";
rQuotes[7] = "He who angers you, conquers you.";
rQuotesBy[7] = "Elizabeth Kenny";
rQuotes[8] = "If there is no wind, row.";
rQuotesBy[8] = "Anonymous";
rQuotes[9] = "Who will, can; Who tries, does; and Who loves, lives.";
rQuotesBy[9] = "Anne McCafferey";
rQuotes[10] = "If you're going to think anyway, you might as well think big.";
rQuotesBy[10] = "Donald Trump";
rQuotes[11] = "We teach best what we need to learn most.";
rQuotesBy[11] = "Richard Bach ";
rQuotes[12] = "The purpose of conflict is harmony.";
rQuotesBy[12] = "Terry Dobson";
rQuotes[13] = "Try not to become a man of success. Rather become a man of value.";
rQuotesBy[13] = "Albert Einstein";
rQuotes[14] = "Regrets? I've had a few but then again, to few to mention.";
rQuotesBy[14] = "Frank Sinatra (15)";
rQuotes[15] = "Small deeds done are better than great deeds planned.";
rQuotesBy[15] = "Peter Marshall";
rQuotes[16] = "We are all worms, but I do believe I am a glowworm.";
rQuotesBy[16] = "Winston Churchill";
rQuotes[17] = "The one thing I like about the future is that it comes one day at a time.";
rQuotesBy[17] = "Abraham Lincoln";
rQuotes[18] = "You can't play well if you don't look good.";
rQuotesBy[18] = "Serena Williams";
rQuotes[19] = "To succeed, jump as quickly at opportunities as you do at conclusions.";
rQuotesBy[19] = "Benjamin Franklin";
rQuotes[20] = "Everything works out in the end. If it hasn't worked out, it's not the end.";
rQuotesBy[20] = "Anonymous";
rQuotes[21] = "The secret to success is to start from scratch and keep on scratching.";
rQuotesBy[21] = "Dennis Green";
rQuotes[22] = "If you want to stand out, don't be different, be outstanding.";
rQuotesBy[22] = "Meredith West";
rQuotes[23] = "I can't change the direction of the wind, but I can adjust my sails…";
rQuotesBy[23] = "Jimmy Dean";
rQuotes[24] = "Opportunity is in the can, not in the cannots.";
rQuotesBy[24] = "James Patterson";
rQuotes[25] = "It's hard to stay mad at somebody that makes you laugh.";
rQuotesBy[25] = "Jay Leno";
rQuotes[26] = "Good is the enemy of Great.";
rQuotesBy[26] = "Jim Collins";
rQuotes[27] = "Laughter is an instant vacation.";
rQuotesBy[27] = "Milton Berle";
rQuotes[28] = "He who forgives ends the quarrel.";
rQuotesBy[28] = "African proverb";
rQuotes[29] = "It's what you learn after you know it all that counts.";
rQuotesBy[29] = "John Wooden";
rQuotes[30] = "There are no menial jobs, only menial attitudes.";
rQuotesBy[30] = "William J. Bennett";
rQuotes[31] = "Always do right. This will gratify some people and astonish the rest.";
rQuotesBy[31] = "Mark Twain";
rQuotes[32] = "This company is a daily celebration of great employees!";
rQuotesBy[32] = "Southwest Airlines";

function drawQuotes(numquotes)
{
	for (i=0;i<numquotes;i++) {
		randomquote=Math.round(Math.random()*(rQuotes.length-1));
		document.write("<p style=\"padding-top: 10px;\"><i>\""+rQuotes[randomquote]+"\"</i><br>&nbsp;&nbsp;&nbsp;- "+rQuotesBy[randomquote]+"</p><p>&nbsp;</p>");
	}
}


