notam = 1;
waktu = 5000;
wakgan = setTimeout("ganti();",waktu);
function ganti(){
	tampil = "no"+notam;
	if(notam+1<=6){
	notam++;
	}else{
	notam = 1;
	}
	tampil2 = "no"+notam;
	document.getElementById(tampil).style.display = "none";
	document.getElementById("b"+tampil).className = "tomSS";
	document.getElementById(tampil2).style.display = "block";
	document.getElementById("b"+tampil2).className = "tomA";
	wakgan = setTimeout("ganti();",waktu);
}
function gantiKe(no){
	tampil = "no"+notam;
	notam = no;
	tampil2 = "no"+notam;
	document.getElementById(tampil).style.display = "none";
	document.getElementById("b"+tampil).className = "tomSS";
	document.getElementById(tampil2).style.display = "block";
	document.getElementById("b"+tampil2).className = "tomA";
}
function stopGanti(){
	clearTimeout(wakgan);
}
function mulaiGanti(){
	wakgan = setTimeout("ganti();",waktu);
}
function oP(a,b,c){
	if(a!=null){
		window.open(a);
	}
	if(b!=null){
		window.open(b);
	}
	if(c!=null){
		window.open(c);
	}
}