<!-- Begin
var how_many_pics = 8;
var now = new Date()
var sec = now.getSeconds()
var pic = sec % how_many_pics;
pic +=1;
if (pic==1) {
pic="images/home-jewel-01.jpg";
width="360";
height="330";
}
if (pic==2) {
pic="images/home-jewel-02.jpg";
width="360";
height="330";
}
if (pic==3) {
pic="images/forsythe-team-09-th.jpg";
width="380";
height="377";
}
if (pic==4) {
pic="images/home-jewel-07.jpg";
width="360";
height="330";
}
if (pic==5) {
pic="images/home-jewel-08.jpg";
width="360";
height="330";
}
if (pic==6) {
pic="images/home-jewel-09.jpg";
width="360";
height="330";
}
if (pic==7) {
pic="images/s-s-palm-tree.jpg";
width="380";
height="377";
}
if (pic==8) {
pic="images/home-jewel-10.jpg";
width="380";
height="377";
}
document.write('<img src=\"' + pic + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('border=0>');
// End -->