var msg = new Array(
"Though no one can go back and make a new beginning, everyone can begin now and make a new ending.",
"Age quod agis.",
"It ain't about how hard you hit, it's about how hard you can get hit and keep moving forward.",
"We could never learn to be brave and patient if there were only joy in the world.",
"Grace glides upon blistered feet.",
"By believing passionately in something that still does not exist, we create it.",
"To know the path ahead, ask those coming back.",
"What wisdom would we impart to the world if we knew it was our last chance?"
);

var x=Math.floor(Math.random()*11)%msg.length;
//var currentDate = new Date();
//var theDay = currentDate.getDay()%6;

document.write("<table border=0 cellpadding=1 cellspacing=1 bgcolor=\"#d21034\" width=\"100%\"><tr><td>");
document.write("<table border=0 cellpadding=0 cellspacing=0 bgcolor=\"#d21034\" width=\"100%\"><tr><td>");
document.write("<center><font color=\"white\">\""+msg[x]+"\"</font></center>");
document.write("</td></tr></table></td></tr></table>");






