$(document).ready(function(){
 // load index page when the page loads
 $("#response").load("home.php");
 $("#home").click(function(){
 // load home page on click
  $("#response").load("home.php");
 });
 $("#winter").click(function(){
 // load about page on click
  $("#response").load("winter.php");
 });
  $("#lifestyle").click(function(){
  // load contact form onclick
   $("#response").load("lifestyle.php");
 });
 $("#contact").click(function(){
 // load contact form onclick
  $("#response").load("contact.html");
 });
 $("#summer").click(function(){
 // load contact form onclick
  $("#response").load("summer.html");
 }); 
 $("#links").click(function(){
 // load contact form onclick
  $("#response").load("links.html");
 }); 
 $("#atc").click(function(){
 // load contact form onclick
  $("#response").load("atc.html");
 });
 $("#theworldturns").click(function(){
 // load contact form onclick
  $("#response").load("theworldturns.html");
 });
});
