
/*import header navi
********************************************************/
function importHeaderNavi(menuTypeNum){

	$.ajax({
		url: "/common/html/header_navi.html",
		cache: false,
		success: function(html){ $("#globalnav").html(html); },
		error: function(XMLHttpRequest, textStatus, errorThrown){
			/*
			console.log(textStatus);
			console.log(errorThrown);
			*/
		}
	});

}

/*import side navi
********************************************************/
function importSideNavi(menuTypenum){

	console.log(menuTypenum);

}

/*import footer
********************************************************/
function importFooter(typeNum){
	$.ajax({
		url: "/common/html/footer.html",
		cache: false,
		success: function(html){ $("#footArea").html(html); },
		error: function(XMLHttpRequest, textStatus, errorThrown){
			/*
			console.log(textStatus);
			console.log(errorThrown);
			*/
		}
	});
}




