﻿// ==============================================
// 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/events/andrea-martinelli-mixed-media-1999.jpg'
theImages[1] = 'images/events/chronis-botsoglou-alcohol-II-oil-graphite-on-canvas.jpg'
theImages[2] = 'images/events/diamantis-diamantopoulos-portrait-oil-on-canvas-1949-1978.jpg'
theImages[3] = 'images/events/dieter-mammel-big-brother-II-tempera-ink-on-paper-2005.jpg'
theImages[4] = 'images/events/dimitris-ratsikas-portrait.jpg'
theImages[5] = 'images/events/djamel-tatah-acrylic-on-canvas-pasted-on-wood-2001.jpg'
theImages[6] = 'images/events/edouard-arroyo-the-modern-miracleman-oil-on-canvas-1993.jpg'
theImages[7] = 'images/events/feher-lazlo-pupil-oil-on-canvas-2006.jpg'
theImages[8] = 'images/events/fidakis.jpg'
theImages[9] = 'images/events/frederique-loutz-face-crayons-gouache-on-paper-2005.jpg'
theImages[9] = 'images/events/gilles-marrey-the-tea-oil-on-canvas-1995-1996.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 id="galleryFallbackImage" src="'+theImages[whichImage]+'" title="random artists at frissiras museum" alt="random artists at frissiras museum">');
}

//-->
