var how_many_ads = 12;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
quote="&quot;I'm not sure that acting is something for a grown man to be doing.&quot;";
}
if (ad==2) {
quote="&quot;I would rather wake up in the middle of nowhere than in any city on earth.&quot;";
}
if (ad==3) {
quote="&quot;When I believe in something, I fight like hell for it.&quot;";
}
if (ad==4) {
quote="&quot;When a horse learns to buy martinis, I'll learn to like horses.&quot;";
}
if (ad==5) {
quote="&quot;I don't believe in that phony hero stuff.&quot;";
}
if (ad==6) {
quote="&quot;If I hadn't made it as an actor, I might have wound up a hood.&quot;";
}
if (ad==7) {
quote="&quot;I live for myself and I answer to nobody.&quot;";
}
if (ad==8) {
quote="&quot;Nobody trusts anyone - or why did they put 'tilt' on a pinball machine?&quot;";
}
if (ad==9) {
quote="&quot;Racing burns like a fever inside me.&quot;";
}
if (ad==10) {
quote="&quot;I'm half farmer and half street people. I've been in jail, in reform school. I get goose pimples every time I think of going back to jail... I haven't done bad for a kid from an orphanage.&quot;";
}
if (ad==11) {
quote="&quot;There's something about my shaggy-dog eyes that makes people think I'm good.&quot;";
}
if (ad==12) {
quote="&quot;My life was screwed up before I was born.&quot;";
}
document.write('' + quote + '');
// End -->

