<!--

var theImages = new Array()

theImages[0] = '_images/header_home.jpg'
theImages[1] = '_images/header_about_us.jpg'
theImages[2] = '_images/header_chef.jpg'
theImages[3] = '_images/header_menus.jpg'
theImages[4] = '_images/header_wine.jpg'
theImages[5] = '_images/header_bar.jpg'
theImages[6] = '_images/header_gallery.jpg'
theImages[7] = '_images/header_reviews.jpg'
theImages[8] = '_images/header_reservations.jpg'
theImages[8] = '_images/header_events.jpg'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//-->