// HTMLロード後に実行する初期化コード
$(function(){
	//アンカー直リンクへの対応
	var anc = window.location.href;
	if(anc.indexOf("#") != -1){
		var start = anc.indexOf("#") + 1;
		var end = anc.length;
		var target = anc.slice(start,end);
		target = target.slice(6,end);
		showContent (target, 'index');
	}
});

//フォームの読み込み
function showContent (obj, file){
	//$("#section").hide();
	$.ajax({
		url: obj + "/" + file + ".html",
		type: "get",
		success: function(response){
			$("#section").fadeIn("normal").html(response);
			urchinTracker('/commu/correspondent/' + obj);
		}
	});
}
