var myImages = new Array();
var myText = new Array();
myImages[0] = 'images/photo_exterior2.jpg';
myText[0] = 'Bright, spacious rooms and a rooftop lounge. Find out about <a href="rooms_rates.php">our rooms</a>.';

myImages[1] = 'images/photo_exterior1.jpg';
myText[1] = myText[0];

myImages[2] = 'images/photo_rooftop.jpg';
myText[2] = myText[0];


var rnd = Math.floor(Math.random()*myImages.length);
document.write('<img src="' + myImages[rnd] + '" width="235" height="319" alt="ANZ Guesthouse - Selcuk / Ephesus, Turkey." border="0" class="sidephoto" />');
document.write('<br /><div style="padding:5px;">' + myText[rnd] + '</div>');


