<!------------------------------------------------------------------------------------------>
<!----------------------------------------------------------------- Front Rollover Script -->
<!----------------------------------------------------- Copyright (c) 2005 Benjamin Johns -->
<!------------------------------------------------------------------------------------------>
if (document.images)
{
  firstOver = new Image
  secondOver = new Image
  thirdOver = new Image
  fourthOver = new Image

  firstOut = new Image
  secondOut = new Image
  thirdOut = new Image
  fourthOut = new Image

  firstOver.src = "images/home_audio_over.jpg"
  secondOver.src = "images/home_gallery_over.jpg"
  thirdOver.src = "images/home_booking_over.jpg"
  fourthOver.src = "images/home_bio_over.jpg"

  firstOut.src = "images/home_audio.jpg"
  secondOut.src = "images/home_gallery.jpg"
  thirdOut.src = "images/home_booking.jpg"
  fourthOut.src = "images/home_bio.jpg"

}

function rollover(location) {
  if (document.images) {
    document[location].src= eval(location + "Over.src")
  }
}

function rollout(location) {
  if (document.images) {
    document[location].src= eval(location + "Out.src")
  }
}
