<!-- debut du script
var now = new Date();
if (now.getDate() == 14 && now.getMonth() == 7-1)
document.write("Aujourd'hui 14 juillet, grand marché local à partir de 9 heures. Animation continue toute la journée");
if (now.getDate() == 15 && now.getMonth() == 8-1)
document.write("Aujourd'hui 15 août, grand marché local à partir de 9 heures. Animation continue toute la journée et grandiose feux d'artifice suivi d'un bal en soirée");
if ((now.getDate() >=20 && now.getDate()<=25) && now.getMonth() == 12-1)
document.write("Joyeux Noël et bonne année !!!   Merry Xmas and happy new year !!!");
if ((now.getDate() >=1 && now.getDate()<=10) && now.getMonth() == 1-1)
document.write("Bonne et heureuse année !!!    Happy new year !!!");
// fin du script -->