// PLF - http://www.jejavascript.net/
var datedujour, date, mois, mois1, jour, jour1, an; 
datedujour = new Date();
jour = datedujour.getDay()
switch(jour){
case 1 : 
jour1 ="lun." 
break;
case 2 :
jour1 ="mar."
break;
case 3 :
jour1 ="mer."
break;
case 4 :
jour1 ="jeu."
break;
case 5 :
jour1 ="ven."
break;
case 6 : 
jour1 ="sam." 
break;
case 0 :
jour1 ="dim."
break;
}
date = datedujour.getDate()
mois = datedujour.getMonth()
switch(mois+1){
case 1 : 
mois1 ="janv." 
break;
case 2 :
mois1 ="f&eacute;vr."
break;
case 3 :
mois1 ="mars"
break;
case 4 :
mois1 ="avril"
break;
case 5 :
mois1 ="mai"
break;
case 6 : 
mois1 ="juin" 
break;
case 7 :
mois1 ="Juil."
break;
case 8 : 
mois1 ="ao&ucirc;t" 
break;
case 9 :
mois1 ="sept."
break;
case 10 :
mois1 ="octo."
break;
case 11 :
mois1 ="nove."
break;
case 12 :
mois1 ="d&eacute;ce."
break;
}
an = datedujour.getFullYear()
heur = datedujour.getHours()
minu = datedujour.getMinutes()
document.write("<div style='float : right; margin-right : 5px; margin-top : -40px; color : #ffffff;'><img src='images/nm-device-wired.png' style='margin-top : 10px; float : left;' alt='d&eacute;coration'><img src='images/audio-volume-muted-panel.png' style='margin-top : 10px; float : left;' alt='d&eacute;coration'><img src='images/applications-email-panel.png' style='margin-top : 10px; float : left;' alt='d&eacute;coration'><span style='position : relative; float : left; margin-top : 15px;'>");
document.write(jour1, " ");
document.write(date, " ");
document.write(mois1 , ", ");
// document.write(heur, ":");
// document.write(minu, " ");
document.write(an, " ");
document.write("</span><img src='images/applications-chat-panel.png' style='margin-top : 10px; float : left;' alt='d&eacute;coration'><a class='menutop' href='contact.php' style='position : relative; float : left; margin-top : 10px;'>2aide</a></div>");
 

