// Top Page
// Show Random Image

var maxNum = 18; // the maximum number of images
var number = Math.floor(Math.random() * maxNum) + 1;

document.write('<p id="mainImg">');
document.write('<img src="img/main' + number + '.jpg" width="760" height="348" alt="Kirana Spa">');
document.write('</p>');
