<!--
var today=new Date;
function hcours() {
var t=today.getHours();
if(t>=6 && t<8) { t1=" d&eacute;but de journ&eacute;e"; t2="early morning"; }
if(t>=8 && t<12) { t1="ne matin&eacute;e"; t2="morning"; }
if(t>=12 && t<13) { t1="ne mi-journ&eacute;e"; t2="mid-day"; }
if(t>=13 && t<18) { t1=" apr&egrave;s-midi"; t2="afternoon"; }
if(t>=18 && t<22) { t1="soir"; t2="evening"; }
if(t>=22 || t<6) { t1="ne nuit"; t2="night"; }
}
hcours();
document.write('<span class="y"><b>Bon'+t1+' à vous.'+'.. '+'Good '+t2+' to you.</b></span>');
// -->
