// JavaScript Document 
/****************************************************************************** 
This is the random image display based on time of entry. 
******************************************************************************/ 

var now=new Date()
var num=(now.getSeconds())%10 

if (num == 0)
 { 
 zdi="<img src=../img/studio/style/col2-style-01.jpg>" 
 }
 if (num == 1)
 { 
 zdi="<img src=../img/studio/style/col2-style-02.jpg>" 
 }
 if (num == 2)
 {
 zdi="<img src=../img/studio/style/col2-style-03.jpg>"  
 }
 if (num == 3) 
 {
 zdi="<img src=../img/studio/style/col2-style-04.jpg>" 
 }
 if (num == 4)
 {
 zdi="<img src=../img/studio/style/col2-style-05.jpg>" 
 }
 if (num == 5)
 {
 zdi="<img src=../img/studio/style/col2-style-06.jpg>" 
 }
 if (num == 6)
 {
 zdi="<img src=../img/studio/style/col2-style-07.jpg>"  
 }
 if (num == 7)
 {
 zdi="<img src=../img/studio/style/col2-style-08.jpg>" 
 }
 if (num == 8)
 {
 zdi="<img src=../img/studio/style/col2-style-09.jpg>" 
 }
 if (num == 9)
 {
 zdi="<img src=../img/studio/style/col2-style-10.jpg>" 
 }
 
 document.write(zdi) 