jQuery(document).ready(function(){
	jQuery.ajax({
		cache:true,
		url:"/wp/top_head04",
		type:"GET",
		error: function(){
			//alert("htmlファイルの読み込みに失敗しました");
		},
		dataType:"html",
		success:function(html){
			$("#top_head04").append(html);
		}
	});
	jQuery.ajax({
		cache:true,
		url:"/wp/top_head05",
		type:"GET",
		error: function(){
			//alert("htmlファイルの読み込みに失敗しました");
		},
		dataType:"html",
		success:function(html){
			$("#top_head05").append(html);
		}
	});
	jQuery.ajax({
		cache:true,
		url:"/wp/top_head06",
		type:"GET",
		error: function(){
			//alert("htmlファイルの読み込みに失敗しました");
		},
		dataType:"html",
		success:function(html){
			$("#top_head06").append(html);
		}
	});
	jQuery.ajax({
		cache:true,
		url:"/wp/top_head07",
		type:"GET",
		error: function(){
			//alert("htmlファイルの読み込みに失敗しました");
		},
		dataType:"html",
		success:function(html){
			$("#top_head07").append(html);
		}
	});
});

