
$(document).ready(function(){
   init_navigation();
   init_infoBar();
   //init_content(pageName);
 });



function init_navigation(){
		var obj=[
		{"LABEL":"Home","LINK":"index.html"},
		{"LABEL":"Contact Us","LINK":"contact.html"},
		{"LABEL":"Services","LINK":"services.html"},
		{"LABEL":"Recipes","LINK":"recipes.html"},
		{"LABEL":"Record Book","LINK":"record.html"},
		{"LABEL":"Links","LINK":"links.html"}
		];
		//build the navigation class buttons.
		jQuery('#navigationListTemplate').tmpl(obj).appendTo('#navigation');
		
};

function init_infoBar(){
	var obj=[
	{"ADDRESS":"(ph) 928.526.8348","CLASS":"Phone"},
	{"ADDRESS":"10101 Stardust Trail Flagstaff, AZ 86004","CLASS":"Address"}
	
	];
	//build the infoBar.
	jQuery('#infoBarTemplate').tmpl(obj).appendTo('#infoBar');
};

function init_content(page){
	$("#content").append('<div id="contentDiv"></div>').children("#contentDiv").hide().load("/" + page + " div#pageContent", function()
                     {
                      $("#contentDiv").show();
                     });
	
}


function changePage(link){
  	$('#content').fadeOut('slow', function() {
    // Animation complete.
	$(".loading").show();
	init_content(link);
	$(".loading").hide();
	$('#content').show();
  });
};
	

