// JavaScript to rotate images into a page, each with a corresponding URL.
var feature = 1;
function goFeature() {
      if (feature==1) window.location.href="archives/070510_geisha_samurai.jpg";
      if (feature==2) window.location.href="archives/070510_f526h58w27.jpg";
      if (feature==3) window.location.href="archives/070510_g508h44w41d7.jpg";
      if (feature==4) window.location.href="archives/070510_g213h53w40.jpg";
      if (feature==5) window.location.href="archives/070510_g428w50h32d11.jpg";
      if (feature==6) window.location.href="archives/070510_g320h36w39_dervish.jpg";
      if (feature==7) window.location.href="archives/070510_g429h26w32d18.jpg";
      if (feature==8) window.location.href="archives/070510_g321h44w29.jpg";
      if (feature==9) window.location.href="archives/070510_g503h34w17.jpg";
      if (feature==10) window.location.href="archives/070510_g301h21w12_potential.jpg";
      if (feature==11) window.location.href="archives/021203_romulus.jpg";
      if (feature==12) window.location.href="archives/021203_olivia.jpg";
      if (feature==13) window.location.href="archives/021203_madonna.jpg";
      if (feature==14) window.location.href="archives/021203_fbh5b.jpg";
      if (feature==15) window.location.href="archives/021203_darius.jpg";
      if (feature==16) window.location.href="archives/021203_cyclops.jpg";
      if (feature==17) window.location.href="archives/070510_g212h54w39d28.jpg";
}
function rotate() {
   if (4 <= navigator.appVersion.substring(0,1))
      {
      if (++feature > 17)  feature = 1;
      document.piece.src = "images/feat" + feature + ".png";
      window.setTimeout('rotate();',2500);
   }
}
// Begin image rotation.
window.setTimeout('rotate();',2500)
// SET ROTATION TO END IN 2500 CYCLES (2.5 seconds)

