// JavaScript Document
// Thank you - http://www.elated.com/ for the script. 
<!-- Hide script from old browsers

function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}
// Store some random image URL's

var random_images = new Array ( );
random_images[0] = "Pics/Rotating/image_a.jpg";
random_images[1] = "Pics/Rotating/image_b.jpg";
random_images[2] = "Pics/Rotating/image_c.jpg";
random_images[3] = "Pics/Rotating/image_d.jpg";
random_images[4] = "Pics/Rotating/image_e.jpg";
random_images[5] = "Pics/Rotating/image_f.jpg";
random_images[6] = "Pics/Rotating/image_h.jpg";
random_images[7] = "Pics/Rotating/image_a.jpg";
random_images[8] = "Pics/Rotating/image_g.jpg";
random_images[9] = "Pics/Rotating/image_h.jpg";

// Pick a random image from the list,
// and set the image source to that image

function pick_image ( )
{
  document.getElementById("random-image").src = random_images[rand(10)-1];
}

// End hiding script from old browsers -->