<!-- Begin 
var now = new Date() 
var sec = now.getSeconds() 
var how_many_pics = 8; 
var pics = sec % how_many_pics; 
pics +=1; 
if (pics==1) { 
picture="images/photo-paris.jpg"; 
width="452"; 
height="108";} 
if (pics==2) { 
picture="images/photo-london.jpg"; 
width="452"; 
height="108";} 
if (pics==3) { 
picture="images/photo-switzerland.jpg"; 
width="452"; 
height="108";} 
if (pics==4) { 
picture="images/photo-milan.jpg"; 
width="452"; 
height="108";} 
if (pics==5) { 
picture="images/photo-ny.jpg"; 
width="452"; 
height="108";} 
if (pics==6) { 
picture="images/photo-madrid.jpg"; 
width="452"; 
height="108";} 
if (pics==7) { 
picture="images/photo-frankfurt.jpg"; 
width="452"; 
height="108";}
if (pics==8) { 
picture="images/photo-luxembourg.jpg"; 
width="452"; 
height="108";}
document.write('<img src=\"' + picture + '\" width=');
document.write(width + ' height=' + height + ' '); 
// End -->