<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/rotating/little_girl.jpg'
theImages[1] = 'images/rotating/chestnut_square.jpg'
theImages[2] = 'images/rotating/tower.jpg'
theImages[3] = 'images/rotating/fountain.jpg'
theImages[4] = 'images/rotating/hills.jpg'
theImages[5] = 'images/rotating/riding_bikes.jpg'
theImages[6] = 'images/rotating/stone_sign.jpg'
theImages[7] = 'images/rotating/running.jpg'
theImages[8] = 'images/rotating/mill.jpg'
theImages[9] = '/images/rotating/BestPlacesWebHeader_Click.jpg'
// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
var whichImage = 9;
function showImage(){
document.write('<a target=_self href="http://youtu.be/o4adTEdV_GU"><img border="0" src="'+theImages[whichImage]+'"></a>');
}

//  End -->
