$.ajaxSetup ({
		cache: false
	});
	var ajax_load = "<img class='loading' src='images/load.gif' alt='loading...' />";
	
//	load() functions

	//start home page (loads automatically)
	
	$(document).ready(function(){
    $('#contentFiller').load('home.html');
   });
   
   $(document).ready(function(){
    $('#home').click(function(){
   $('#contentFiller').load('home.html');
   });
   });
  
   
   
   //end home page
   
	//start load() for locations.html
	
	var locations = "locations.html";
	
       $("#locations").click(function(){
		$("#contentFiller").html(ajax_load).load(locations);
	});
	
	//end load() for locations.html
	
	
	//start load() for aboutus.html
	
	$(document).ready(function(){
    $('#aboutus').click(function(){
   $('#contentFiller').load('aboutus.html');
   });
   });
	
	
	//end load() for aboutus.html
	
	//start load() for contactus.html
	$(document).ready(function(){
    $('#contactus').click(function(){
   $('#contentFiller').load('contact.html');
   });
   });
	
	//end load() for contactus.php
	
	
	//start north menu
	var lunchmenuNorth = "lunchmenuNorth.html";
	$("#lunchmenuNorth").click(function(){
		$("#contentFiller").html(ajax_load).load(lunchmenuNorth);
	});
	
	var lunchspecialsNorth = "lunchspecialsNorth.html";
	$("#lunchspecialsNorth").click(function(){
		$("#contentFiller").html(ajax_load).load(lunchspecialsNorth);
	});
	
	var dinnermenuNorth = "dinnermenuNorth.html";
	$("#dinnermenuNorth").click(function(){
		$("#contentFiller").html(ajax_load).load(dinnermenuNorth);
	});
	
	
	var specialsmenuNorth = "specialsmenuNorth.html";
	$("#specialsmenuNorth").click(function(){
		$("#contentFiller").html(ajax_load).load(specialsmenuNorth);
	});
	
	
	var kidsmenuNorth = "kidsmenuNorth.html";
	$("#kidsmenuNorth").click(function(){
		$("#contentFiller").html(ajax_load).load(kidsmenuNorth);
	});
	
	//end north menu
	
	//start south menu
	
	var lunchmenuSouth = "lunchmenuSouth.html";
	$("#lunchmenuSouth").click(function(){
		$("#contentFiller").html(ajax_load).load(lunchmenuSouth);
	});
	
	var lunchspecialsSouth = "lunchspecialsSouth.html";
	$("#lunchspecialsSouth").click(function(){
		$("#contentFiller").html(ajax_load).load(lunchspecialsSouth);
	});
	
	var dinnermenuSouth = "dinnermenuSouth.html";
	$("#dinnermenuSouth").click(function(){
		$("#contentFiller").html(ajax_load).load(dinnermenuSouth);
	});
	
	
	var specialsmenuSouth = "specialsmenuSouth.html";
	$("#specialsmenuSouth").click(function(){
		$("#contentFiller").html(ajax_load).load(specialsmenuSouth);
	});
	
	
	var kidsmenuSouth = "kidsmenuSouth.html";
	$("#kidsmenuSouth").click(function(){
		$("#contentFiller").html(ajax_load).load(kidsmenuSouth);
	});
	
	//end south menu
	
	
	
	
	

	
	
	
	
	
	
	


