$(document).ready(function() {
$(".nav_about").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("about.html");
  $('.centerContent').fadeIn(1500);
});
$(".nav_menu").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("menu.html");
  $('.centerContent').fadeIn(1500);
});
$(".nav_location").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("locations.html");
  $('.centerContent').fadeIn(1500);
});
$(".nav_gallery").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("gallery.html");
  $('.centerContent').fadeIn(1500);
});
$(".nav_press").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("press.html");
  $('.centerContent').fadeIn(1500);
});
$(".nav_events").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("events.html");
  $('.centerContent').fadeIn(1500);
});
$(".nav_reservation").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("reservation.html");
  $('.centerContent').fadeIn(1500);
});
$(".nav_contact").click(function() {
  $('.centerContent').hide(); 
  $('.centerContent').load("contact.html");
  $('.centerContent').fadeIn(1500);
});
});
