// JavaScript to interpolate random photos into a page.
var ic = 18;     // Number of alternative photos
var xoxo = new Array(ic);  // Array to hold filenames
					
			xoxo[0] = "/CEP/photos/00.jpg";
			xoxo[1] = "/CEP/photos/01.jpg";
			xoxo[2] = "/CEP/photos/02.jpg";
			xoxo[3] = "/CEP/photos/03.jpg";
			xoxo[4] = "/CEP/photos/04.jpg";
			xoxo[5] = "/CEP/photos/05.jpg";
			xoxo[6] = "/CEP/photos/06.jpg";
			xoxo[7] = "/CEP/photos/07.jpg";
			xoxo[8] = "/CEP/photos/08.jpg";
			xoxo[9] = "/CEP/photos/09.jpg";
			xoxo[10] = "/CEP/photos/10.jpg";
			xoxo[11] = "/CEP/photos/11.jpg";
			xoxo[12] = "/CEP/photos/12.jpg";
			xoxo[13] = "/CEP/photos/13.jpg";
			xoxo[14] = "/CEP/photos/14.jpg";
			xoxo[15] = "/CEP/photos/15.jpg";
			xoxo[16] = "/CEP/photos/16.jpg";
			xoxo[17] = "/CEP/photos/17.jpg";
			xoxo[18] = "/CEP/photos/18.jpg";
			
function pickRandom(range) 
{
  if (Math.random)
    return Math.round(Math.random() * (range-1));
  else
  {
    var now = new Date();
    return (now.getTime() / 1000) % range;
  }
}