$(document).ready(function(){
	var url=window.location.toString();
	var str="";
	if(url.indexOf("?")!=-1){
		var ary=url.split("?")[1];
		str=ary;
	}else{
		str+="";
	}
	$.get("/mjwork_page/page_top.php?"+str,null,function(response){
		$("#page_top").html(response);
	});
});
