var Statements = new Array(

	'A brand for a company is like a reputation for a person. You earn reputation by trying to do hard things well.<br><br><p align=right>- Jeff Bezos</p>', 
	'Things may come to those who wait, but only things left by those who hustle.<br><br><p align=right>- Abraham Lincoln</p>', 
	'An empowered organization is one in which individuals have the knowledge, skill, desire, and opportunity to personally succeed in a way that leads to collective organizational success. <br><br><p align=right>- Stephen Covey</p>', 
	'In a perfect world we do not want to be overly dependent on any single asset or be so dependent on the cycle or where one asset is the bulk of this company.<br><br><p align=right>- James Packer</p>', 
	'Winning is not a sometime thing, it is an all time thing. You do not win once in a while, you do not do things right once in a while, you do them right all the time. Winning is habit. Unfortunately, so is losing.<br><br><p align=right>- Vince Lombardi', 
	'I like to tell people that all of our products and business will go through three phases. There is vision, patience, and execution.<br><br><p align=right>- Steve Ballmer'
);


function GetStatement(outputtype) 
{
	if(++Number > Statements.length - 1) Number = 0;
	if (outputtype==0)
	document.write(Statements[Number])
	else if (document.getElementById)
	document.getElementById("ponder").innerHTML=Statements[Number];
}


function GetRandomNumber(lbound, ubound) 
{
	return (Math.floor(Math.random() * (ubound - lbound)) + lbound);
}

           

var Number = GetRandomNumber(0, Statements.length - 1);