var quotesf = new Array(18) //Add your quotes below
quotesf[0]="Your talents will be recognized and suitably rewarded.";
quotesf[1]="He who hurries cannot walk with dignity.";
quotesf[2]="Your success in life must be earned with earnest efforts.";
quotesf[3]="You love peace.";
quotesf[4]="A friend asks only for your time and not your money.";
quotesf[5]="You will soon inherit a piece of land.";
quotesf[6]="Your luck is about to change.";
quotesf[7]="Things will soon go your way.";
quotesf[8]="He who stands on toilet is high on pot.";
quotesf[8]="Everybody is ignorant, only on different subjects.";
quotesf[9]="Fortune favors the brave.";
quotesf[10]="There is nothing permanent except change.";
quotesf[11]="You haven't failed until you give up.";
quotesf[12]="Go with the flow.";
quotesf[13]="To err is human. To really foul things up takes a computer.";
quotesf[14]="Bed, Hair, Peace - Bagism.";
quotesf[15]="Dont stop till you get enough.";
quotesf[16]="Life is like a box of choclates.";
quotesf[17]="Why walk when you can run ?";

function fortune() {
var rand_int = Math.floor(Math.random()*18); 
document.all.myspan.innerHTML=(quotesf[rand_int]); 
}
