function FORMA(num) {
	Resp = "";
	if (num < 10) {
		Resp = "0";
	}
	Resp = Resp + num;
	return Resp;
}
function atualiza() {
	agora = new Date();
	hora = agora.getHours();
	minu = agora.getMinutes();
	segu = agora.getSeconds();
	texto = FORMA(hora) + ":" + FORMA(minu);
	$("#relogio").html(texto);
	setTimeout('atualiza()', 200);

}