<!--
var n=-1;
var a=null;
var imgs = new Array();
 
    imgs[0] = new Image(); imgs[0].src =  "PIC/PR1265-.JPG";
    imgs[1] = new Image(); imgs[1].src =  "PIC/PR1383-.JPG";
    imgs[2] = new Image(); imgs[2].src =  "PIC/PR1505-.JPG";
    imgs[3] = new Image(); imgs[3].src =  "PIC/PR1404-.JPG";
    imgs[4] = new Image(); imgs[4].src =  "PIC/PR1426-.JPG";
    imgs[5] = new Image(); imgs[5].src =  "PIC/PR1427-.JPG";
function rotate(){
  n=(n+1)%6;
  document.pictures.src=imgs[n].src;
  if(a==null)
  a=setInterval("rotate()",1000);
  }
// End -->