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