// ==============================================
// 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] = 'swap/charter_segling_grekland.jpg'
theImages[1] = 'swap/chartersegling_grekland.jpg'
theImages[2] = 'swap/katamaran_charter_grekland.jpg'
theImages[3] = 'swap/katamaran_grekland.jpg'
theImages[4] = 'swap/segling_i_grekland.jpg'
theImages[5] = 'swap/segling_santorini_grekland.jpg'
theImages[6] = 'swap/segling_yacht.jpg'
theImages[7] = 'swap/sounio_yacht_charter.jpg'
theImages[8] = 'swap/svensk_yacht_charter.jpg'
theImages[9] = 'swap/katamaran_grekland.jpg'
theImages[10] = 'swap/yacht_charter_grekland.jpg'

theImages[11] = 'swap/atoll_grekland.jpg'
theImages[12] = 'swap/segling_oar.jpg'
theImages[13] = 'swap/marina_grekland.jpg'
theImages[14] = 'swap/nafplio_grekland.jpg'
theImages[15] = 'swap/lefkada_grekland.jpg'
theImages[16] = 'swap/marina-grekland.jpg'
theImages[17] = 'swap/grekland_solnedgang.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]+'" alt="chartersegling i grekland" title="chartersegling i grekland">');
}

//-->
