function schedule(theDay) {
	var strTime = new Date();
	strTime = strTime.getHours();
	var theHours = strTime;
	var theProgram = "";
	var theInterval = window.setInterval(function timer() {
		if (theDay == 1) {
			if (theHours >= 5 && theHours < 7) {
				theProgram = "Alvorada Sertaneja";
			}
			if (theHours >= 7 && theHours < 8) {
				theProgram = "Missa";
			}
			if (theHours >= 8 && theHours < 12) {
				theProgram = "Ti Ti Ti da Eldorado";
			}
			if (theHours >= 12 && theHours < 18) {
				theProgram = "Paradão ELD";
			}
			if (theHours >= 18 && theHours < 20) {
				theProgram = "O Melhor do Brega";
			}
			if (theHours >= 20 && theHours < 24) {
				theProgram = "Tocando no Passado";
			}
			if (theHours >= 0 && theHours < 5) {
				theProgram = "Boa-noite";
			}
		}
		else if (theDay == 7) {
			if (theHours >= 5 && theHours < 6) {
				theProgram = "Alvorada Sertaneja";
			}
			if (theHours >= 6 && theHours < 11) {
				theProgram = "Super Sucessos - 1ª Edição";
			}
			if (theHours >= 11 && theHours < 14) {
				theProgram = "Falando a Verdade"
			}
			if (theHours >= 14 && theHours < 18) {
				theProgram = "Super Sucessos - 2ª Edição"
			}
			if (theHours >= 18 && theHours < 20) {
				theProgram = "O Melhor do Brega"
			}
			if (theHours >= 20 || theHours < 2) {
				theProgram = "Agitos da Noite"
			}
			if (theHours >= 2 && theHours < 5) {
				theProgram = "Boa-noite!"
			}
		}
		else if (theDay > 1 && theDay < 7) {
			if (theHours >= 5 && theHours < 6) {
				theProgram = "Alvorada Sertaneja";
			}
			if (theHours >= 6 && theHours < 9) {
				theProgram = "Jornal Eldorado - 1ª edição";
			}
			if (theHours >= 9 && theHours < 12) {
				theProgram = "Eld Sucessos - 1ª Edição";
			}
			if (theHours >= 12 && theHours < 14) {
				theProgram = "Jornal Eldorado - 2ª edição";
			}
			if (theHours >= 14 && theHours < 17) {
				theProgram = "Eld Sucessos - 2ª Edição";
			}
			if (theHours >= 17 && theHours < 18) {
				theProgram = "Brega Rasgado";
			}
			if (theHours >= 18 && theHours < 20) {
				theProgram = "Igreja";
			}
			if (theHours >= 20 && theHours < 24) {
				theProgram = "Tocando no Passado";
			}
			if (theHours >= 0 && theHours < 5) {
				theProgram = "Boa-noite!";
			}
		}
		document.getElementById("schedule").innerHTML = "<h4>" + theProgram + "</h4>";
	}, 1000);
	
}
