// Gallery script.
// With image cross fade effect for those browsers that support it.
// Script copyright (C) 2004 www.cryer.co.uk.
// Script is free to use provided this copyright header is included.
// Place caption element within a DIV tag with the ID as ""gallerycaption
// Place within IMG tag the ID as ""gallery
// Add this to thumbnail image or text: <a href="#" onmouseover="LoadGallery('""gallery', 'larger image', 'gallerycaption', 'This is the caption for the first thumbnail image')">
function LoadGallery(morrisongallery,imageFile,morrisongallerycaption,captionText)
{
  document.getElementById(morrisongallery).src = imageFile;
  document.getElementById(morrisongallerycaption).innerHTML=captionText;
}

function LoadGallery(plazagallery,imageFile,plazagallerycaption,captionText)
{
  document.getElementById(plazagallery).src = imageFile;
  document.getElementById(plazagallerycaption).innerHTML=captionText;
}

function LoadGallery(kenthousegallery,imageFile,kenthousegallerycaption,captionText)
{
  document.getElementById(kenthousegallery).src = imageFile;
  document.getElementById(kenthousegallerycaption).innerHTML=captionText;
}

function LoadGallery(getawaygallery,imageFile,getawaygallerycaption,captionText)
{
  document.getElementById(getawaygallery).src = imageFile;
  document.getElementById(getawaygallerycaption).innerHTML=captionText;
}

function LoadGallery(kentvillagegallery,imageFile,kentvillagegallerycaption,captionText)
{
  document.getElementById(kentvillagegallery).src = imageFile;
  document.getElementById(kentvillagegallerycaption).innerHTML=captionText;
}