
var months = new Array(11);

var today = new Date();
var month = today.getMonth();
var year = today.getYear();
if (year <= 99){
year = year + 1900;
}

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";

today = null;


document.write ('<p class="pie"><a href="index.html">Centro das Restaurações Nino Contavalli</a><br>Web desenvolvida por<br><a href="http://www.osmosis.com.pe" target="_blank">Osmosis Comunicación & Educación</a><br>Lima (peru), ' + months[month] + ' de ' + year + '</p>')
