function twitter_change(){
	/////////////////////////////////////////////////////
	now_play = "<img src='http://www.cdjournal.com/image/parts/nowload.gif'> 読み込んでいます…";
	
	document.getElementById("twitter_body").innerHTML = now_play;
	////////////////////////////////////////////////////
	/////////////////////////////////////////////////////
	// Mozilla, Firefox, Safari, IE7
	if (window.XMLHttpRequest){
		tw_httpObject = new XMLHttpRequest();
	// IE5, IE6
	} else if (window.ActiveXObject){
		try {
			tw_httpObject = new ActiveXObject("Msxml2.XMLHTTP"); 
		} catch(e) {
			tw_httpObject = new ActiveXObject("Microsoft.XMLHTTP"); 
		}
	}
	///////////////////////////////////////////////	
	// サーバーからデータ到着後に実行する関数
	tw_httpObject.onreadystatechange = display_twitter_change;
	///////////////////////////////////////////////	
	// HTTP非同期通信でPHPにアクセス  page
	tw_httpObject.open ("GET", "parts/twitter.php?" + (new Date).getTime(), true);
	tw_httpObject.send (null);
}
//////////////////////////////////////////////////////////////////////////////////////////////	
//////////////////////////////////////////////////////////////////////////////////////////////	
// 表示
	function display_twitter_change(){
		if(tw_httpObject.readyState == 4 && tw_httpObject.status == 200){
			top_body_txt = decodeURIComponent(tw_httpObject.responseText);
			
			document.getElementById("twitter_body").innerHTML = top_body_txt;
		}
	}

