// JavaScript Document

//++++++++++++++++++++++++++++++++++++++++++++++++++++++*
// Distribution of search keyword
//++++++++++++++++++++++++++++++++++++++++++++++++++++++*
//　
//　■Muu
//　・MULE_VALENTINE
//　http://mule-valentine.chu.jp/
//　ver1.0 2011/02/22
//　
//++++++++++++++++++++++++++++++++++++++++++++++++++++++*
/*@cc_on _d=document;eval('var document=_d')@*/
//++++++++++++++++++++++++++++++++++++++++++++++++++++++*
//  開始
//++++++++++++++++++++++++++++++++++++++++++++++++++++++**

if(window.addEventListener) {
	window.addEventListener("load", distributes, false);
}else if(window.attachEvent) {
	window.attachEvent("onload", distributes);
}else {
	window.onload = distributes;
};


//++++++++++++++++++++++++++++++++++++++++++++++++++++++*
// メイン部
//++++++++++++++++++++++++++++++++++++++++++++++++++++++*

function distributes(){

		var myDate = new Date();
		var min = myDate.getSeconds();


	if (document.referrer){
		var ref = document.referrer;//ハイパーリンクの取得
		var enc = decodeURI(ref);//urlのエンコード
		if (enc.match(/らく/i)){
			document.getElementById('keyword').innerHTML = '<a href="http://home.osakagas.co.jp/rakutoku/index.html"><img src="/images/top_catch_rakutoku.jpg" alt="らく得リース"></a>';
		}
	};
};

