function date_complete() {
 var now = new Date(), hours = now.getHours(), minutes = now.getMinutes(), seconds = now.getSeconds(), month = now.getMonth(), year = now.getFullYear(), date = now.getDate();
 if (month == 0) { month = "janvier"; }
 else if (month == 1) { month = "février"; }
 else if (month == 2) { month = "mars"; }
 else if (month == 3) { month = "avril"; }
 else if (month == 4) { month = "mai"; }
 else if (month == 5) { month = "juin"; }
 else if (month == 6) { month = "juillet"; }
 else if (month == 7) { month = "août"; }
 else if (month == 8) { month = "septembre"; }
 else if (month == 9) { month = "octobre"; }
 else if (month == 10) { month = "Novembre"; }
 else { month = "Décembre"; }
 if (10 > seconds) seconds = "0" + seconds;
 if (10 > minutes) minutes = "0" + minutes;
 document.getElementById("time").innerHTML = 'Nous sommes le  '+date+' '+month+' '+year+' , il est '+hours+':'+minutes+':'+seconds+' ';
 setTimeout('date_complete()',1000);
}
