var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
first.innerText='Traditional Values,';
second.innerText='Modern Solutions';
}
if (ad==2) {
first.innerText='Talk to a person,';
second.innerText='not a computer';
}
if (ad==3) {
first.innerText='Talk to a person,';
second.innerText='not a computer';
}

