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