function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=40
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}

//DATE

auj=0;
aujourdhui = new Date();
mois = aujourdhui.getMonth()
if (mois==0) mois=" janvier ";
if (mois==1) mois=" février ";
if (mois==2) mois=" mars ";
if (mois==3) mois=" avril ";
if (mois==4) mois=" mai ";
if (mois==5) mois=" juin ";
if (mois==6) mois=" juillet ";
if (mois==7) mois=" août ";
if (mois==8) mois=" septembre ";
if (mois==9) mois=" octobre ";
if (mois==10) mois=" novembre ";
if (mois==11) mois=" décembre ";
annee = aujourdhui.getFullYear()
auj=mois+annee;
