obj=document.getElementById("ctext");
str='';
s=Math.round(Math.random()*10)+1;

gt=new Array();
gt[1]="Obstacles are necessary for success because in selling, as in all careers of importance, victory comes only after many struggles and countless defeats... <br /> Og Mandino";
gt[2]="The future you see is the future you get... <br /> Robert G Allen";
gt[3]="Even if your foot is in the door or you bring someone into a conference room, you don't win the deal unless you actually get them to sign on the dotted line.... <br /> Donald Trump";
gt[4]="People are definitely a company's greatest asset. It doesn't make any difference whether the product is cars or cosmetics. A company is only as good as the people it keeps.... <br /> Mary Kay Ash";
gt[5]="There are managers so preoccupied with their email messages that they never look up from their screens to see what's happening in the non-digital world.... <br /> Mihaly Csikszentmihalyi";
gt[6]="It is a pretty recognizable brand name. Originally it was Jerry's Guide to the World Wide Web but we settled on Yahoo... <br /> Jerry Yango";
gt[7]="A brand for a company is like a reputation for a person. You earn reputation by trying to do hard things well... <br /> Jeff Bezos";
gt[8]="If you don't have integrity, you have nothing. You can't buy it. You can have all the money in the world, but if you are not a moral and ethical person, you really have nothing <br /> Henry Kravis";
gt[9]="I believe through learning and application of what you learn, you can solve any problem, overcome any obstacle and achieve any goal that you can set for yourself...<br /> Brian Tracy";
gt[10]="Take the pains required to become what you want to become, or you might end up becoming something you'd rather not be... <br />  Donald Trump";
gt[11]="Whenever you are asked if you can do a job, tell 'em, Certainly, I can Then get busy and find out how to do it...<br />  Theodore Roosevelt";
gt[12]="The secret of business is knowing something that nobody else knows.<br /> Aristotle Onassis";
gt[13]="A consultant is someone who saves his client almost enough to pay his fee. <br /> Arnold.H.Glasgow";
gt[14]="The absolute fundamental aim is to make money out of satisfying customers... <br /> Sir John Egan";
gt[15]="Quality is remembered long after the price is forgotten... <br /> Gucci family slogan";

function start(){
obj.innerHTML='';
if(gt[s]==null)s=1;
str=gt[s++];
obj.innerHTML=str
setTimeout("start()", 8000);
}
/*
function writeChar(){
if(k==str.length){return false}
if(str.charAt(k)=='<br />')obj.innerHTML+="<br>";
obj.innerHTML+=str.charAt(k);
k++;
setTimeout("writeChar()", 10);
}
*/
start();
