// ------------------------------------------------
// -- web design: INFORLOGIC <info@in4logic.com> --
// ------------------------------------------------

//<!--
function MakeArray(n) 
        {
        this.length = n
        return this
        }

Mes = new MakeArray(12)
Dia = new MakeArray(7)
Mes[1] = "Janeiro"
Mes[2] = "Fevereiro"
Mes[3] = "Março"
Mes[4] = "Abril"
Mes[5] = "Maio"
Mes[6] = "Junho"
Mes[7] = "Julho"
Mes[8] = "Agosto"
Mes[9] = "Setembro"
Mes[10] = "Outubro"
Mes[11] = "Novembro"
Mes[12] = "Dezembro"

Dia[1] = "Domingo"
Dia[2] = "Segunda"
Dia[3] = "Terça"
Dia[4] = "Quarta"
Dia[5] = "Quinta"
Dia[6] = "Sexta"
Dia[7] = "Sábado"

function showToday(todayDate) 
        {
        var theDate = todayDate.getDate()
        var theDay = Dia[todayDate.getDay() + 1]
        var theMonth = Mes[todayDate.getMonth() + 1]
        var theYear = todayDate.getYear()
        return theDay + ", " + theDate + " de " + theMonth + " de " + theYear
        }
// -->