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

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

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

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

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

document.write(images[index]);

//done
