// JavaScript Document
var mess = new Array('Knowledge comes, but wisdom lingers','Fortune favors the brave','A goal without a plan is just a wish.','Courage is fear that has said its prayers.','Ambition is not a vice of little people.','Failure is success if we learn from it.','Its not what you look at that matters, its what you see.','The dumbest people I know are those who know it all.',
					 'Achievement results from work realizing ambition');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    