
<!-- // hide script

if(document.images) {
	buttonHome = new Image;
	buttonHomeOver = new Image;
	buttonActivities = new Image;
	buttonActivitiesOver = new Image;
	buttonPhotos = new Image;
	buttonPhotosOver = new Image;
	buttonContact = new Image;
	buttonContactOver = new Image;
	buttonLocation = new Image;
	buttonLocationOver = new Image;
	buttonForm = new Image;
	buttonFormOver = new Image;


	// source images
	buttonHome.src = "images/buttonHome.gif";
	buttonHomeOver.src = "images/buttonHomeOver.gif";
	buttonActivities.src = "images/buttonActivities.gif";
	buttonActivitiesOver.src = "images/buttonActivitiesOver.gif";
	buttonPhotos.src = "images/buttonPhotos.gif";
	buttonPhotosOver.src = "images/buttonPhotosOver.gif";
	buttonContact.src = "images/buttonContact.gif";
	buttonContactOver.src = "images/buttonContactOver.gif";
	buttonLocation.src = "images/buttonLocation.gif";
	buttonLocationOver.src = "images/buttonLocationOver.gif";
	buttonForm.src = "images/buttonForm.gif";
	buttonFormOver.src = "images/buttonFormOver.gif";

}

// MouseOver Function
function swapOn(imgLocation){
  if(document.images) {
    document.images[imgLocation].src = eval(imgLocation + "Over.src");
  }
}

// MouseOut Function
function swapOff(imgLocation) {
  if(document.images) {
    document.images[imgLocation].src = eval(imgLocation + ".src");
  }
}

// end hiding script -->
