<!------------------------------------------------------------------------------------------>
<!----------------------------------------------------------------- Front Rollover Script -->
<!----------------------------------------------------- Copyright (c) 2005 Benjamin Johns -->
<!------------------------------------------------------------------------------------------>
if (document.images)
{
  firstOver = new Image
  secondOver = new Image
  thirdOver = new Image
  fourthOver = new Image
  fifthOver = new Image

  firstOut = new Image
  secondOut = new Image
  thirdOut = new Image
  fourthOut = new Image
  fifthOut = new Image

  firstOver.src = "images/tommy_sub_audio_over.jpg"
  secondOver.src = "images/tommy_sub_gallery_over.jpg"
  thirdOver.src = "images/tommy_sub_booking_over.jpg"
  fourthOver.src = "images/tommy_sub_bio_over.jpg"
  fifthOver.src = "images/tommy_sub_home_over.jpg"

  firstOut.src = "images/tommy_sub_audio.jpg"
  secondOut.src = "images/tommy_sub_gallery.jpg"
  thirdOut.src = "images/tommy_sub_booking.jpg"
  fourthOut.src = "images/tommy_sub_bio.jpg"
  fifthOut.src = "images/tommy_sub_home.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")
  }
}