
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] = "janvier";
months[1] = "février";
months[2] = "mars";
months[3] = "avril";
months[4] = "mai";
months[5] = "juin";
months[6] = "juillet";
months[7] = "août";
months[8] = "septembre";
months[9] = "octobre";
months[10] = "novembre";
months[11] = "décembre";

today = null;


document.write ('<p class="pie"><a href="index.html">Centre de Restaurations Nino Contavalli</a><br>web développée par<br><a href="http://www.osmosis.com.pe" target="_blank">Osmosis Comunicación & Educación</a><br>Lime (Pérou), ' + months[month] + ' ' + year + '</p>')
