// JavaScript Document
images = new Array(3);

images[0] = "<a href = 'http://villaincrete.gr/selection/villa-elounda-solfez/index.html'><img src='images/index/villas-in-elounda-crete-5.jpg' title='Villa Solfez'alt='Villa Solfez' border='0'></a>";

images[1] = "<a href = 'http://villaincrete.gr/selection/villa-knossos/index.html'><img src='images/index/villas-konossos.jpg' title='Villa Knossos'alt='Villa Knossos' border='0'></a>";

images[2] = "<a href = 'http://villaincrete.gr/selection/villa-lato/index.html'><img src='images/index/villas-lato.jpg' title='Villa Lato'alt='Villa Lato' border='0'></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done
