$(function(){
	$("#header_js").load("/include/header.html");
//	$("#gnavi_js").load("/include/gnavi.html");
	$("#footer_js").load("/include/footer.html");

	$("#side_banner_js").load("/include/side_banner.html");
	$("#side_competence_js").load("/include/side_competence.html");
	$("#side_company_js").load("/include/side_company.html");
	$("#side_solution_js").load("/include/side_solution.html");
	$("#side_casestudy_js").load("/include/side_casestudy.html");
	$("#side_seminar_js").load("/include/side_seminar.html");
	$("#side_recruit_js").load("/include/side_recruit.html");
	$("#side_recruit_graduates_js").load("/include/side_recruit_graduates.html");
	$("#side_recruit_career_js").load("/include/side_recruit_career.html");
	$("#side_partner_js").load("/include/side_partner.html");
	$("#side_howto_js").load("/include/side_howto.html");
	$("#side_news_js").load("/include/side_news.html");
	$("#side_others_js").load("/include/side_others.html");
});


$(function() {
 var aTags = $("a");
 aTags.each(function(){
  var hrf = this.href;
  if (hrf.match(/\.html#/)) {
   var spltHrf = hrf.split("\.html#");
   $(this).attr("href", spltHrf[0]+"\.html?id="+spltHrf[1]);
  } else {
   return;
  };
 });
});

