var bannerArray = new Array();
var myCount=0;
// Banner Code Assignment
bannerArray[0] = "<A HREF=\"../common/ser_mobilebanking.html\"><IMG SRC=\"../images/hd_pro_brn6.gif\" border=\"0\" width=\"260\" height=\"55\"></A>";
bannerArray[1] = "<A HREF=\"../secr/tfb_history.html\"><IMG SRC=\"../images/hd_pro_brn9.gif\" border=\"0\" width=\"260\" height=\"55\"></A>";
bannerArray[2] = "<A HREF=\"../remit/ser_mg.html\"><IMG SRC=\"../images/hd_pro_brn3.gif\" border=\"0\" width=\"260\" height=\"55\"></A>";
bannerArray[3] = "<A HREF=\"../loan/ser_loan.html\"><IMG SRC=\"../images/hd_pro_brn4.gif\" border=\"0\" width=\"260\" height=\"55\"></A>";
bannerArray[4] = "<A HREF=\"../serv/ser_atm.html\"><IMG SRC=\"../images/hd_pro_brn5.gif\" border=\"0\" width=\"260\" height=\"55\"></A>";

bannerRotate();

function bannerRotate() {

if(myCount > bannerArray.length-1){myCount=0;}

// Write out rotation
	if (document.all){			// it is IE
		document.all.l3.innerHTML=bannerArray[myCount];
	}

	else if (document.layers){	// it is NN

	document.layers.l1.document.layers.l2.document.open();
	document.layers.l1.document.layers.l2.document.write(bannerArray[myCount]);
	document.layers.l1.document.layers.l2.document.close();
	}
setTimeout("bannerRotate()", 3000);
myCount++;
}
