<!--
	/*
		TOP画面用Javascript
	*/
	
	/*
		mioclub のRSSを取得します
		@access		private
	*/
	function getMioclubRSS() {

		if(location.toString().match(/\/mailmagazine\//)) {
			var rssFile = 'http://theoita.com/getMioclubRSS.php';
		} else {
			var rssFile = 'http://theoita.com/getMioclubRSS.php';
		}
	
		var msec = (new Date()).getTime();
		var param = $H({cache:msec}).toQueryString();
		new Ajax.Request(rssFile, {
			method: "post",
			parameters: param,
			onSuccess:function(res) {
				if(res.responseText!="") {
					$('miorss').innerHTML = res.responseText;
				}
			},
			onFailure:function(res) {
				alert('No RSS');
			}
		});
		return false;

	}

	Event.observe(window, 'load', getMioclubRSS, false);

-->
