<!--
/* Adapted from George Chiang (JK's JavaScript tutorial)
http://www.javascriptkit.com
Credit must stay intact for use*/
var current= new Date();
var min=current.getMinutes();
var numPictures = 11;
var pic = Math.floor(Math.random()*numPictures);

var captions=new Array(numPictures);
captions[0]="The caves in Petra, Jordan, Feb 2005";
captions[1]="Wadi Rum desert, Jordan, Feb 2005";
captions[2]="The original pic from the template -- just because I thought it was pretty";
captions[3]="Hubei IT Camp, July 2006";
captions[4]="Taronga Zoo Lion, Sydney, July 2006";
captions[5]="Luang Prabang, Laos, across the Mekong, August 2006";
captions[6]="Mekong River vista, August 2006";
captions[7]="Sabratha, Libya, February 2006";
captions[8]="Penalty for Birth Control Violations, China, July 2007";
captions[9]="Ancient Olympic Staduim, Greece, July 2007";
captions[10]="Ephesus, Turkey, July 2007";

var string = "<img src='images/pic" + pic + ".jpg' height=230px width=513px><br><center>"+captions[pic]+"<center>";
document.write(string);
//-->
