// JavaScript Document

     
	
$(function() {

$("#l_bake").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-bake.png" width="250" height="268" alt="Bakery">');
   });

$("#l_banquet").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-banquet.png" width="319" height="280" alt="Banquet">');
   });

$("#l_car_wash").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-carwash.png" width="319" height="280" alt="Car Wash">');
   });

$("#l_coffee").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-coffee.png" width="319" height="280" alt="Coffee Shop">');
   });

$("#l_dining").hover(
  function() {
$('#facSHOW')
  .html('<img src="images/fac-img-dine.png" width="319" height="280" alt="Dining Room" />');
   });

$("#l_gift").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-gift.png" width="319" height="280" alt="Gift Shop">');
   });

$("#l_gas").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-gas.png" width="283" alt="Convenience Store">');
   });

$("#l_pizza").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-pizza.png" width="283" alt="Pizza">');
   });

$("#l_lounge").hover(
  function () {
$('#facSHOW')
  .html('<img src="images/fac-img-lounge.png" width="319" height="280" alt="Lounge">');
   });

});

