var theImages = new Array();

theImages[0] = "http://www.wanderlustsha.com/wp-content/random/thelust01.jpg";
theImages[1] = "http://www.wanderlustsha.com/wp-content/random/thelust10.jpg";
theImages[2] = "http://www.wanderlustsha.com/wp-content/random/thelust11.jpg";
theImages[3] = "http://www.wanderlustsha.com/wp-content/random/thelust02.jpg";
theImages[4] = "http://www.wanderlustsha.com/wp-content/random/thelust03.jpg";
theImages[5] = "http://www.wanderlustsha.com/wp-content/random/thelust04.jpg";
theImages[6] = "http://www.wanderlustsha.com/wp-content/random/thelust05.jpg";
theImages[7] = "http://www.wanderlustsha.com/wp-content/random/thelust06.jpg";
theImages[8] = "http://www.wanderlustsha.com/wp-content/random/thelust07.jpg";
theImages[9] = "http://www.wanderlustsha.com/wp-content/random/thelust08/.jpg";
theImages[10] = "http://www.wanderlustsha.com/wp-content/random/thelust09.jpg";

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));

function showImage() {
	document.write('<img src="'+theImages[whichImage]+'" style="border: 5px solid #fff;">');
}

