
var theImages = new Array();

theImages[0] = '/wp-content/themes/2below0-14/photos/photo-001.jpg';
theImages[1] = '/wp-content/themes/2below0-14/photos/photo-002.jpg';
theImages[2] = '/wp-content/themes/2below0-14/photos/photo-003.jpg';
theImages[3] = '/wp-content/themes/2below0-14/photos/photo-004.jpg';
theImages[4] = '/wp-content/themes/2below0-14/photos/photo-005.jpg';
theImages[5] = '/wp-content/themes/2below0-14/photos/photo-006.jpg';
theImages[6] = '/wp-content/themes/2below0-14/photos/photo-007.jpg';
theImages[7] = '/wp-content/themes/2below0-14/photos/photo-008.jpg';
theImages[8] = '/wp-content/themes/2below0-14/photos/photo-009.jpg';
theImages[9] = '/wp-content/themes/2below0-14/photos/photo-010.jpg';
theImages[10] = '/wp-content/themes/2below0-14/photos/photo-011.jpg';
theImages[11] = '/wp-content/themes/2below0-14/photos/photo-012.jpg';
theImages[12] = '/wp-content/themes/2below0-14/photos/photo-013.jpg';
theImages[13] = '/wp-content/themes/2below0-14/photos/photo-014.jpg';
theImages[14] = '/wp-content/themes/2below0-14/photos/photo-015.jpg';
theImages[15] = '/wp-content/themes/2below0-14/photos/photo-016.jpg';
theImages[16] = '/wp-content/themes/2below0-14/photos/photo-017.jpg';
theImages[17] = '/wp-content/themes/2below0-14/photos/photo-018.jpg';
theImages[18] = '/wp-content/themes/2below0-14/photos/photo-019.jpg';
theImages[19] = '/wp-content/themes/2below0-14/photos/photo-020.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 showPhoto() {
	
	document.write('<img src="'+theImages[whichImage]+'" width="300" height="250" border="0">');
	
}