// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// 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. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'images/winter/308158437_5a3f782892_o.jpg'
theImages[1] = 'images/winter/313036393_527ed1f13a_b.jpg'
theImages[2] = 'images/winter/318941610_5208e10b04_b.jpg'
theImages[3] = 'images/winter/329098278_e589e4590e_b.jpg'
theImages[4] = 'images/winter/329540646_55c3271430_o.jpg'
theImages[5] = 'images/winter/329696997_846e57fa49_o.jpg'
theImages[6] = 'images/winter/331187871_b6ff867296_o.jpg'
theImages[7] = 'images/winter/327237080_152edb1ca1_b.jpg'
theImages[8] = 'images/winter/203654938_e48a75da66_o.jpg'
theImages[9] = 'images/winter/95534270_eaba32ccbf_b.jpg'
theImages[10] = 'images/winter/92628271_987b891101_b.jpg'
theImages[11] = 'images/winter/105053074_2d4e31fb53_b.jpg'
theImages[12] = 'images/winter/109790139_1f7d185dbc_b.jpg'
theImages[13] = 'images/winter/koreanmem.jpg'
theImages[14] = 'images/winter/trees.jpg'


// ======================================
// do not change 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));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->
