var how_many_ads = 9;
var now = new Date();
var sec = now.getSeconds();
var ad = (sec % how_many_ads) + 1;

if (ad==1) {
	
	first.innerText='Smart lending solutions for';
	second.innerText='business growth and success';
}

if (ad==2) {
	
	first.innerText='Smart lending solutions for';
	second.innerText='home purchases and finance';
	
}

if (ad==3) {
	first.innerText='Smart lending solutions for';
	second.innerText='business and home finance';
}

if (ad==4) {
	
	first.innerText='Want to grow your business';
	second.innerText='but need help with your finances?';
	
}

if (ad==5) {
	
	first.innerText='Smart lending solutions for';
	second.innerText='business growth and success';
	
}

if (ad==6) {
	
	first.innerText='Smart lending solutions for';
	second.innerText='home purchases and finance';
	
}

if (ad==7) {
	
	first.innerText='Smart lending solutions for';
	second.innerText='business and home finance';
	
}

if (ad==8) {
	
	first.innerText='Want to grow your business';
	second.innerText='but need help with your finances?';
	
}

if (ad==9) {
	
	first.innerText='Talk to a person,';
	second.innerText='not a computer';
	
}

