<!-- Hide the script from non-Javascript browsers

function showJournee() {
  var date_statement="";
  var time_statement="";
  var today=new Date();
  var month="";
  var day="";
  var month=today.getMonth();
  var day_of_week=today.getDay();

  date_statement=""
  document.month=""

  month++; // So it's now between 1 - 12.

if(month==1)
{
        january(today.getDate());
        document.month="janvier";
}
if(month==2)
{
        february(today.getDate());
        document.month="f&eacute;vrier";
}
if(month==3)
{
        march(today.getDate());
        document.month="mars";
}
if(month==4)
{
        april(today.getDate());
        document.month="avril";
}
if(month==5)
{
        may(today.getDate());
        document.month="mai";
}
if(month==6)
{
        june(today.getDate());
        document.month="juin";
}

if(month==7)
{
        july(today.getDate());
        document.month="juillet";
}
if(month==8)
{
        august(today.getDate());
        document.month="août";
}
if(month==9)
{
        september(today.getDate());
        document.month="septembre";
}
if(month==10)
{
        october(today.getDate());
        document.month="octobre";
}
if(month==11)
{
        november(today.getDate());
       document.month="novembre";
}
if(month==12)
{
        december(today.getDate());
        document.month="d&eacute;cembre";
}

document.day=""

if(day_of_week==0)
        document.day="Dimanche";
if(day_of_week==1)
        document.day="Lundi";
if(day_of_week==2)
        document.day="Mardi";
if(day_of_week==3)
        document.day="Mercredi";
if(day_of_week==4)
        document.day="Jeudi";
if(day_of_week==5)
        document.day="Vendredi";
if(day_of_week==6)
        document.day="Samedi";

return (document.day + " " + today.getDate() + " " + document.month + " " + today.getFullYear());
}

function january(date)
{
        if(date==1)
        date_statement="Bonne Ann&eacute;e!";
}
function february(date)
{
        if(date==14)
        date_statement="Pensez &agrave; la Saint Valentin!";
}
function march(date)
{
}
function april(date)
{
        if(date==1)
        date_statement="Mefiez-vous des poissonniers!";
}

function may(date)
{
        if(date==1)
        date_statement="Travailleurs, Travailleuses, bon repos!";
}
function june(date)
{

}
function july(date)
{

       if(date==21)
        date_statement="";
}
function august(date)
{
}
function september(date)
{
}
function october(date)
{
        if(date==31)
        date_statement="Happy Halloween.";
}
function november(date)
{

}
function december(date)
{
        if(date==25)
        date_statement="Joyeux Noël!";
        if(date==31)
        date_statement="Bon r&eacute;veillon!";
}
// -- End Hiding Here -->
