function rnd(n) 
 { 
 return Math.floor(Math.random() * n) + 1; 
 } 
var how_many_ads = 5;
var now = new Date()
var sec = now.getSeconds()
var ad = rnd(5);
if (ad==1) {
txt1="Music is the universal language of mankind.";
txt2="Henry Wadsworth Longfellow";
}
if (ad==2) {
txt1="Life is ten percent what happens to you and ninety percent how you respond to it.";
txt2="Lou Holtz";
}
if (ad==3) {
txt1="Nothing is so permanent as a temporary government program.";
txt2="Milton Friedman";
}
if (ad==4) {
txt1="We are discreet sheep; we wait to see how the drove is going, and then go with the drove.";
txt2="Mark Twain";
}
if (ad==5) {
txt1="  If a million people say a foolish thing, it is still a foolish thing.";
txt2="Anatole France";
}
document.write('<p>' + txt1 + '<br><em>' + txt2 + '</em></p>');