<!--
var count = 1
function PreloadImages(image, width, height, ext)
{
  eval("a" + count + "=new Image(" + width + "," + height + ");" + "a" + count + ".src='/images/" + image + "_off." + ext + "';")
  count++
  eval("a" + count + "=new Image(" + width + "," + height + ");" + "a" + count + ".src='/images/" + image + "_on." + ext + "';")
  count++
}

function ChangeImage(img, image_src)
{ document.images[img].src = '/images/' + image_src }

PreloadImages('home', 128, 26, 'gif')
PreloadImages('property_details', 128, 26, 'gif')
PreloadImages('rates_availability', 128, 26, 'gif')
PreloadImages('area_attractions', 128, 26, 'gif')
PreloadImages('location_map', 128, 26, 'gif')
PreloadImages('guest_comments', 128, 26, 'gif')
PreloadImages('useful_links', 128, 26, 'gif')
//-->
