// JavaScript Document

function initScript() {	
		RoadHtml('maincontents','home.html');
}

function RoadHtml(id,uri){
	new Ajax.Request(uri,
					 {
						 	method:"get",
							onSuccess: function(transport){
							$(id).innerHTML = transport.responseText;	
							}
					 });
	
	
}
	
document.onclick = function(e) {
	var url, ie;
	if (document.all) {
		url = window.event.srcElement.href;
		ie = (!window.opera) ? 1 : 0;
	}
	else if (document.getElementById && e.which == 1) {
		url = e.target.href || e.target.parentNode.href;
	}


	if (url && url.match(location.hostname)) {		// 自分のサイトのホスト名が含まれるリンクは通常表示
	RoadHtml('maincontents',url);
		return false;
	}
	
	return true;
}
