<!--
// please keep this text when you copy the source code
// made by Ragecreations version 0.2

//Get Date
var months=new Array(13);
months[1]="janeiro";
months[2]="fevereiro";
months[3]="março";
months[4]="abril";
months[5]="maio";
months[6]="junho";
months[7]="julho";
months[8]="agosto";
months[9]="setembro";
months[10]="outubro";
months[11]="novembro";
months[12]="dezembro";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 

//Get Time
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes()
var minuti = ((minutes < 10) ? ":0" : ":") + minutes
var timeValue = "" + ((hours >12) ? hours -12 :hours)
if (timeValue == "0") timeValue = 12;
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += (hours >= 12) ? " pm" : " am"

//Get Day
var days=new Array(7);
days[0]="domingo";
days[1]="segunda-feira";
days[2]="terça-feira";
days[3]="quarta-feira";
days[4]="quinta-feira";
days[5]="sexta-feira";
days[6]="sábado";
var lday=days[time.getDay()];

//-->

