$(document).ready(function(){
$("#bouncyCastlesIMG").hover(
  function () {
	$(this).attr("src", "images/bouncyCastle-on.png");
  }, 
  function () {
    $(this).attr("src", "images/bouncyCastle-off.png");
  }
);

$("#bouncenSlideIMG").hover(
  function () {
	$(this).attr("src", "images/bouncenslide-on.png");
  }, 
  function () {
    $(this).attr("src", "images/bouncenslide-off.png");
  }
);

$("#kidsfunIMG").hover(
  function () {
	$(this).attr("src", "images/kidsfun-on.png");
  }, 
  function () {
    $(this).attr("src", "images/kidsfun-off.png");
  }
);

$("#slidesIMG").hover(
  function () {
	$(this).attr("src", "images/slides-on.png");
  }, 
  function () {
    $(this).attr("src", "images/slides-off.png");
  }
);

$("#adultSportIMG").hover(
  function () {
	$(this).attr("src", "images/adultSport-on.png");
  }, 
  function () {
    $(this).attr("src", "images/adultSport-off.png");
  }
);

$("#jumpjumpIMG").hover(
  function () {
	$(this).attr("src", "images/jumpjump-on.png");
  }, 
  function () {
    $(this).attr("src", "images/jumpjump-off.png");
  }
);

$("#tipeIMG").hover(
  function () {
	$(this).attr("src", "images/tipe-on.png");
  }, 
  function () {
    $(this).attr("src", "images/tipe-off.png");
  }
);

$("#breakIMG").hover(
  function () {
	$(this).attr("src", "images/break-on.png");
  }, 
  function () {
    $(this).attr("src", "images/break-off.png");
  }
);



});
