function refererCheck() {
	
    var str = decodeURI(document.referrer);
	
	str = String(str);
	str = decodeURI(str);
	if (str.match(/マンガ/i)) {
		word = "マンガ";
	}else if(str.match(/ゴルフ/i)){
		word = "ゴルフ";
	}
	//$('#tttt').text(str);
	return word;
	
};
