// JavaScript Document 
/****************************************************************************** 
This is the random image display based on time of entry. 
******************************************************************************/ 

var now=new Date()
var num=(now.getSeconds())%5 

 if (num == 0)
 { 
 zdi="<img src=../img/boutique/acces/col2-acces-01.jpg>" 
 }
 if (num == 1)
 { 
 zdi="<img src=../img/boutique/acces/col2-acces-02.jpg>"
 }
 if (num == 2)
 { 
 zdi="<img src=../img/boutique/acces/col2-acces-03.jpg>"
 }
 if (num == 3)
 { 
 zdi="<img src=../img/boutique/acces/col2-acces-04.jpg>"
 }
 if (num == 4)
 { 
 zdi="<img src=../img/boutique/acces/col2-acces-05.jpg>"
 }
 
 document.write(zdi) 
