var d = new Date();
jour_sem=d.getDay();
//document.write(jour_sem);
if(jour_sem==0) document.write("<img src=dimanche.jpg width=110 height=130 border=0> ");
if(jour_sem==1) document.write("<img src=lundi.jpg width=110 height=130 border=0> ");
if(jour_sem==2) document.write("<img src=mardi.jpg width=110 height=130 border=0> ");
if(jour_sem==3) document.write("<img src=mercredi.jpg width=110 height=130 border=0> ");
if(jour_sem==4) document.write("<img src=jeudi.jpg width=110 height=130 border=0> ");
if(jour_sem==5) document.write("<img src=vendredi.jpg width=110 height=130 border=0> ");
if(jour_sem==6) document.write("<img src=samedi.jpg width=110 height=130 border=0> ");

