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

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

images[1] = "<a href = 'http://villaincrete.gr/selection/villa-elounda-black-pearl/index.html'><img src='images/index/villas-in-elounda-crete-4.jpg' title='Villa Black Pearl' alt='Villa Black Pearl' border='0' ></a>";

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

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

document.write(images[index]);

//done
