var DaysofWeek = new Array()
  DaysofWeek[0]="Domingo"
  DaysofWeek[1]="Segunda"
  DaysofWeek[2]="Terça"
  DaysofWeek[3]="Quarta"
  DaysofWeek[4]="Quinta"
  DaysofWeek[5]="Sexta"
  DaysofWeek[6]="Sábado"

var Months = new Array()
  Months[0]="Janeiro"
  Months[1]="Fevereiro"
  Months[2]="Março"
  Months[3]="Abril"
  Months[4]="Maio"
  Months[5]="Junho"
  Months[6]="Julho"
  Months[7]="Agosto"
  Months[8]="Setembro"
  Months[9]="Outubro"
  Months[10]="Novembro"
  Months[11]="Dezembro"

function clock(campo){
	  
	var dte 	= new Date();
	var hrs 	= dte.getHours();
	var min 	= dte.getMinutes();
	var sec 	= dte.getSeconds();
	var day 	= DaysofWeek[dte.getDay()]
	var date 	= dte.getDate()
	var month 	= Months[dte.getMonth()]
	var year 	= dte.getFullYear()
	
//	if(hrs > 12) hrs=hrs-12;

	if (hrs == 0) hrs=12;
	if (hrs<=9) hrs="0"+hrs;
	if (min<=9) min="0"+min;
	if (sec<=9) sec="0"+sec;
	
	var hora = hrs + ":" + min + ":" + sec + " " + day + ", " + date + " de " + month + ", " + year;
	
	document.getElementById(campo).innerHTML = hora;
	
	setTimeout("clock('"+campo+"')",1000);
}
