$(document).ready(function(){
 // load index page when the page loads
 $("#response").load("1.html");
 
$("#location_california").click(function(){
 // load home page on click
  $("#response").load("location_california.html");
 })
 .throbber({parent: "#throbber-container"})
;
 
$("#location_hawaii").click(function(){
 // load about page on click
  $("#response").load("location_hawaii.html");
 })
.throbber({parent: "#throbber-container"})
 ;
 
$("#location_newjersey").click(function(){
 // load about page on click
  $("#response").load("location_newjersey.html");
 })
.throbber({parent: "#throbber-container"})
 ;
 
$("#location_newyork").click(function(){
 // load about page on click
  $("#response").load("location_newyork.html");
 })
.throbber({parent: "#throbber-container"})
 ; 

$("#location_oregon").click(function(){
 // load about page on click
  $("#response").load("location_oregon.html");
 })
.throbber({parent: "#throbber-container"})
 ;
 
 $("#location_washington").click(function(){
 // load about page on click
  $("#response").load("location_washington.html");
 })
.throbber({parent: "#throbber-container"})
 ;
 
 $("#location_philippines").click(function(){
 // load about page on click
  $("#response").load("location_philippines.html");
 })
.throbber({parent: "#throbber-container"})
 ;
 
 $("#location_taiwan").click(function(){
 // load about page on click
  $("#response").load("location_taiwan.html");
 })
.throbber({parent: "#throbber-container"})
 ;
 
// ///////////////////////////////////////////
 
 $("#3").click(function(){
 // load about page on click
  $("#response").load("3.html");
 });
 
 $("#4").click(function(){
 // load contact form onclick
  $("#response").load("4.html");
 });
 


 

});

