// JavaScript Document
function ShowHours() { 
	TodaysHour = new Date()
	horas = TodaysHour.getHours()
	minutos = TodaysHour.getMinutes()
	if (horas < 10)
		horas= "0" + horas
	if (minutos < 10)
		minutos = "0" + minutos
document.write(horas+"h:"+minutos+"min")
}
var now = new Date();
var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = now.getDate();
var yearNr=now.getYear();
if(dName==1) Day = "Domingo";
if(dName==2) Day = "Segunda";
if(dName==3) Day = "Ter&ccedil;a";
if(dName==4) Day = "Quarta";
if(dName==5) Day = "Quinta";
if(dName==6) Day = "Sexta";
if(dName==7) Day = "S&aacute;bado";
if(yearNr < 2000) Year = 1900 + yearNr;
else Year = yearNr;
// Data Corrente
var todaysDate =(" " + Day + ", " + dayNr + " /  " + mName + " /  " + Year);
function mOvr(src,clrOver) {
 if (!src.contains(event.fromElement)) {
	 src.style.cursor = 'hand';
	 src.bgColor = clrOver;
	}
 }
 function mOut(src,clrIn) {
if (!src.contains(event.toElement)) {
 src.style.cursor = 'default';
 src.bgColor = clrIn;
	}
 }
//-->
