var RollText = new Array();

RollText[0] = 'Biaya Transfer Antar Bank Internet Banking menjadi Rp 2.500';
RollText[1] = 'Terhitung Mulai Tanggal 3 Januari 2005';

currentText = 0
function next(){
	if (currentText < RollText.length-1){
		currentText++;
	} else {
		currentText = 0;
	}
	document.getElementById('RollText').innerHTML = RollText[currentText];
	return true;
}


