<!-- Begin
// Set up the image files to be used.
var theImages = new Array();
//
theImages[0] = 'http://img.earthpure.com/tiles/tile1.jpg';
theImages[1] = 'http://img.earthpure.com/tiles/tile2.jpg';
theImages[2] = 'http://img.earthpure.com/tiles/tile3.jpg';
theImages[3] = 'http://img.earthpure.com/tiles/tile4.jpg';
theImages[4] = 'http://img.earthpure.com/tiles/tile5.jpg';
theImages[5] = 'http://img.earthpure.com/tiles/tile6.jpg';
theImages[6] = 'http://img.earthpure.com/tiles/tile7.jpg';
theImages[7] = 'http://img.earthpure.com/tiles/tile8.jpg';
theImages[8] = 'http://img.earthpure.com/tiles/tile9.jpg';
theImages[9] = 'http://img.earthpure.com/tiles/tile10.jpg';
theImages[10] = 'http://img.earthpure.com/tiles/tile11.jpg';
theImages[11] = 'http://img.earthpure.com/tiles/tile12.jpg';
theImages[12] = 'http://img.earthpure.com/tiles/tile13.jpg';
theImages[13] = 'http://img.earthpure.com/tiles/tile14.jpg';
theImages[14] = 'http://img.earthpure.com/tiles/tile15.jpg';
theImages[15] = 'http://img.earthpure.com/tiles/tile16.jpg';
theImages[16] = 'http://img.earthpure.com/tiles/tile17.jpg';
theImages[17] = 'http://img.earthpure.com/tiles/tile18.jpg';
theImages[18] = 'http://img.earthpure.com/tiles/tile19.jpg';
theImages[19] = 'http://img.earthpure.com/tiles/tile20.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));
  preBuffer[whichImage] = new Image();
  preBuffer[whichImage].src = theImages[whichImage];
function showImage() {
  var tile = document.getElementById('tile_rotate');
//  document.write('<img src="'+theImages[whichImage]+'">');
//  alert(tile.innerHTML);
  tile.innerHTML='<img src="'+theImages[whichImage]+'">';
//  alert(tile.innerHTML);
//  tile.write('<img src="'+theImages[whichImage]+'">');
  }
//  End -->