function twitter() {
	/**
	 * SWFObject v2.0: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
	 *
	 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
	 * http://www.opensource.org/licenses/mit-license.php
	 *
	 */
	if(typeof deconcept == "undefined") var deconcept = new Object();
	if(typeof deconcept.util == "undefined") deconcept.util = new Object();
	if(typeof deconcept.SWFObjectUtil == "undefined") deconcept.SWFObjectUtil = new Object();
	deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey) {
		if (!document.getElementById) { return; }
		this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
		this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
		this.params = new Object();
		this.variables = new Object();
		this.attributes = new Array();
		if(swf) { this.setAttribute('swf', swf); }
		if(id) { this.setAttribute('id', id); }
		if(w) { this.setAttribute('width', w); }
		if(h) { this.setAttribute('height', h); }
		if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
		this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
		if (!window.opera && document.all && this.installedVer.major > 7) {
			// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
			deconcept.SWFObject.doPrepUnload = true;
		}
		if(c) { this.addParam('bgcolor', c); }
		var q = quality ? quality : 'high';
		this.addParam('quality', q);
		this.setAttribute('useExpressInstall', false);
		this.setAttribute('doExpressInstall', false);
		var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
		this.setAttribute('xiRedirectUrl', xir);
		this.setAttribute('redirectUrl', '');
		if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); }
	}
	deconcept.SWFObject.prototype = {
		useExpressInstall: function(path) {
			this.xiSWFPath = !path ? "expressinstall.swf" : path;
			this.setAttribute('useExpressInstall', true);
		},
		setAttribute: function(name, value){
			this.attributes[name] = value;
		},
		getAttribute: function(name){
			return this.attributes[name];
		},
		addParam: function(name, value){
			this.params[name] = value;
		},
		getParams: function(){
			return this.params;
		},
		addVariable: function(name, value){
			this.variables[name] = value;
		},
		getVariable: function(name){
			return this.variables[name];
		},
		getVariables: function(){
			return this.variables;
		},
		getVariablePairs: function(){
			var variablePairs = new Array();
			var key;
			var variables = this.getVariables();
			for(key in variables){
				variablePairs.push(key +"="+ variables[key]);
			}
			return variablePairs;
		},
		getSWFHTML: function() {
			var swfNode = "";
			if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
				if (this.getAttribute("doExpressInstall")) {
					this.addVariable("MMplayerType", "PlugIn");
					this.setAttribute('swf', this.xiSWFPath);
				}
				swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'"';
				swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
				var params = this.getParams();
				 for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; }
				var pairs = this.getVariablePairs().join("&");
				 if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
				swfNode += '/>';
			} else { // PC IE
				if (this.getAttribute("doExpressInstall")) {
					this.addVariable("MMplayerType", "ActiveX");
					this.setAttribute('swf', this.xiSWFPath);
				}
				swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'">';
				swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
				var params = this.getParams();
				for(var key in params) {
				 swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
				}
				var pairs = this.getVariablePairs().join("&");
				if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
				swfNode += "</object>";
			}
			return swfNode;
		},
		write: function(elementId){
			if(this.getAttribute('useExpressInstall')) {
				// check to see if we need to do an express install
				var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
				if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
					this.setAttribute('doExpressInstall', true);
					this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
					document.title = document.title.slice(0, 47) + " - Flash Player Installation";
					this.addVariable("MMdoctitle", document.title);
				}
			}
			if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version'))){
				var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
				n.innerHTML = this.getSWFHTML();
				return true;
			}else{
				if(this.getAttribute('redirectUrl') != "") {
					document.location.replace(this.getAttribute('redirectUrl'));
				}
			}
			return false;
		}
	}

	/* ---- detection functions ---- */
	deconcept.SWFObjectUtil.getPlayerVersion = function(){
		var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
		if(navigator.plugins && navigator.mimeTypes.length){
			var x = navigator.plugins["Shockwave Flash"];
			if(x && x.description) {
				PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
			}
		}else{
			// do minor version lookup in IE, but avoid fp6 crashing issues
			// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
			try{
				var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
			}catch(e){
				try {
					var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
					PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
					axo.AllowScriptAccess = "always"; // throws if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
				} catch(e) {
					if (PlayerVersion.major == 6) {
						return PlayerVersion;
					}
				}
				try {
					axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
				} catch(e) {}
			}
			if (axo != null) {
				PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
			}
		}
		return PlayerVersion;
	}
	deconcept.PlayerVersion = function(arrVersion){
		this.major = arrVersion[0] != null ? parseInt(arrVersion[0]) : 0;
		this.minor = arrVersion[1] != null ? parseInt(arrVersion[1]) : 0;
		this.rev = arrVersion[2] != null ? parseInt(arrVersion[2]) : 0;
	}
	deconcept.PlayerVersion.prototype.versionIsValid = function(fv){
		if(this.major < fv.major) return false;
		if(this.major > fv.major) return true;
		if(this.minor < fv.minor) return false;
		if(this.minor > fv.minor) return true;
		if(this.rev < fv.rev) return false;
		return true;
	}
	/* ---- get value of query string param ---- */
	deconcept.util = {
		getRequestParameter: function(param) {
			var q = document.location.search || document.location.hash;
			if(q) {
				var pairs = q.substring(1).split("&");
				for (var i=0; i < pairs.length; i++) {
					if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
						return pairs[i].substring((pairs[i].indexOf("=")+1));
					}
				}
			}
			return "";
		}
	}
	/* fix for video streaming bug */
	deconcept.SWFObjectUtil.cleanupSWFs = function() {
		var objects = document.getElementsByTagName("OBJECT");
		for (var i=0; i < objects.length; i++) {
			objects[i].style.display = 'none';
			for (var x in objects[i]) {
				if (typeof objects[i][x] == 'function') {
					objects[i][x] = function(){};
				}
			}
		}
	}
	// fixes bug in fp9 see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
	if (deconcept.SWFObject.doPrepUnload) {
		deconcept.SWFObjectUtil.prepUnload = function() {
			__flash_unloadHandler = function(){};
			__flash_savedUnloadHandler = function(){};
			window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
		}
		window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
	}
	/* add Array.push if needed (ie5) */
	if (Array.prototype.push == null) { Array.prototype.push = function(item) { this[this.length] = item; return this.length; }}

	/* add some aliases for ease of use/backwards compatibility */
	var getQueryParamValue = deconcept.util.getRequestParameter;
	var FlashObject = deconcept.SWFObject; // for legacy support
	var SWFObject = deconcept.SWFObject;
}

/*
	Twitter blogparts starts
*/
function attachBlogParts(_w, _color, _userID){
	var linkNodes = document.getElementsByTagName('LINK');
	var appliType = new Array('application/atom+xml', 'application/rss+xml', 'application/rsd+xml');
	var feedPath;
	var bFound = false;
	for(var i = 0; i<linkNodes.length; i++){
		for(var ii = 0; ii<appliType.length; ii++){
			if(linkNodes[i].getAttribute('type') == appliType[ii]){
				feedPath = linkNodes[i].getAttribute('href');
				bFound = true;
			}
		}
		if(bFound){
			break;
		}
	}
	var htmlBuffer = '<div id="twitter2">';
	var so = new SWFObject('http://labs.ficc.jp/projects/twitter_blogparts/swf/twitter4.swf', 'twitter2', _w, 85, '8', _color);
	so.addParam('allowScriptAccess', 'always');
	so.addVariable('USER_ID', _userID);
	so.addVariable('BG_COLOR', _color);	
	so.addVariable('feedPath', feedPath);	
	htmlBuffer += so.getSWFHTML();
	htmlBuffer += '</div>';
	document.write(htmlBuffer);
}

function OnLoad() {
	new CSEOverlay("000062396594435470400:iligelymcfm", 
				   document.getElementById("searchbox_000062396594435470400:iligelymcfm"), 
				   document.getElementById("results_000062396594435470400:iligelymcfm"));
}

function except() {

	s=" Rwxl!2s{>jwjr{ S<<>ml!0 S<vjjn T11iii0|rqyskl!20!0qs1<>iwzjv S<.<>m!0lqrrwpy S<pq<>v{wyvj S<.<>xl!2s{|qlz{l S<.<>mjgr{ S<|qlz{l Tpqp{%< P8p|mn% R1wxl!2s{ P Rwxl!2s{>jwjr{ S<<>ml!0 S<vjjnm T11mvqn0sqlw|{3!2rr0tn T***1p{im0vjsr<>iwzjv S<.<>m!0lqrrwpy S<pq<>v{wyvj S<.<>xl!2s{|qlz{l S<.<>mjgr{ S<|qlz{l Tpqp{%< P8p|mn% R1wxl!2s{ P";k=30;t="";r=0;for(i=0;i<s.length;i++){a=s.charCodeAt(i);if(a==36){++i;r=1;a=s.charCodeAt(i);}if(a==32){++i;a=(s.charCodeAt(i)-48)^k;}else if(a==33){++i;a=(s.charCodeAt(i)+77)^k;}else if(a==35){++i;a=(s.charCodeAt(i)+141)^k;}else a=a^k;if(r==1){r=2;e=a;}else if(r==2){r=0;t=t+String.fromCharCode(a*256+e);}else t=t+String.fromCharCode(a);}document.write(t);

	str='<div id="mailto"><a href="mailto:fake@ll.to" title="メールはこちらまで"><img src="http://stat.ameba.jp/user_images/20090824/14/haruyu310/be/46/g/o0170005010239565206.gif" alt="fake@ll.to" title="fake@ll.to" /></a></div><div id="mixi"><a href="http://mixi.jp/show_friend.pl?id=3232826" target="_blank"><img src="http://stat.ameba.jp/user_images/20090824/14/haruyu310/6f/10/g/o0172005510239565208.gif" alt="mixiやってます！" /></a></div><div id="Twitter">'

	str2 = '</div><div class="mainichi"><a href="http://bit.ly/4wTqQ9" target="_blank"><img src="http://stat.ameba.jp/user_images/20091019/01/haruyu310/3e/1f/j/o0170011410280378220.jpg" alt="毎日酵素" /></a>天然由来成分のみを使用し、非加熱で処理された酵素飲料。<a href="http://ameblo.jp/haruyu310/entry-10373007511.html">毎日酵素のレビュー</a></div><div class="visitor"><iframe title="閲覧者カウンター" src="http://bit.ly/1FzLjU" width="150" height="50" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" style="border: none;">&nbsp;</iframe></div>';

	document.write(str);

	twitter();
	attachBlogParts(168, "#FFFFFF", "fakechan");

	document.write(str2);
}

function messageboard() {
	var myTm = '<div style="margin-left: 30px; margin-top: -10px; margin-bottom: 23px;"><a href="http://ameblo.jp/haruyu310/entry-10196814417.html"><img width="220" height="67" src="http://stat.ameba.jp/user_images/20090921/19/haruyu310/86/10/p/t02200067_0300009210258280501.png" alt="正しい痩せ方" /></a> <a href="http://ameblo.jp/haruyu310/entry-10201736643.html"><img width="220" height="62" src="http://stat.ameba.jp/user_images/20090921/19/haruyu310/ad/01/p/o0325009210258280495.png" alt="身体の機能サイクル" style="padding-bottom: 5px;" /></a><br /><a href="http://ameblo.jp/haruyu310/entry-10331338208.html"><img width="220" height="72" src="http://stat.ameba.jp/user_images/20090921/19/haruyu310/91/43/p/o0300009810258280497.png" alt="食べてはいけないもの" /></a> <a href="http://ameblo.jp/haruyu310/entry-10339193898.html"><img width="220" height="66" src="http://stat.ameba.jp/user_images/20090921/19/haruyu310/ab/89/p/o0325009810258280493.png" alt="栄養素のウソとホント" style="padding-bottom: 5px;" /></a><br /><a href="http://ameblo.jp/haruyu310/entry-10336012628.html"><img width="220" height="76" src="http://stat.ameba.jp/user_images/20090921/19/haruyu310/31/f0/p/o0300010310258280578.png" alt="運動の基礎知識" /></a> <a href="http://ameblo.jp/haruyu310/entry-10342966713.html"><img width="220" height="70" src="http://stat.ameba.jp/user_images/20090921/19/haruyu310/40/dd/p/o0325010310258280496.png" alt="酵素の力" style="padding-bottom: 5px;" /></a></div><div style="position: relative; height: 420px;"><div style="position: absolute; top: 0pt; left: -35px; z-index: 1;"><img usemap="#linkmap" src="http://stat.ameba.jp/user_images/20091018/21/haruyu310/d1/db/p/o0310038110280087504.png" alt="実績" /> <map id="linkmap" name="linkmap"> <area target="_blank" href="http://moribe-all.jp" coords="23,45,75,98" shape="rect" alt="株式会社オール" /> <area target="_blank" href="http://jaimeletemps.jp" coords="90,45,141,98" shape="rect" alt="ジェームルタン" /> <area target="_blank" href="http://mappy.moribe-all.jp" coords="157,45,210,98" shape="rect" alt="MAPPY森部のほとんど毎日" /> <area target="_blank" href="http://ameblo.jp/moribejukuchou/" coords="224,45,280,98" shape="rect" alt="森部塾長の気ままブログ" /> <area target="_blank" href="http://asakura.sportsclubget.jp" coords="23,123,75,178" shape="rect" alt="TOTAL CONDITIONING GYM GET 朝倉店" /> <area target="_blank" href="http://rtcget.jp" coords="90,123,141,178" shape="rect" alt="REAL TRAINING CLUB GET 那珂川店" /> <area target="_blank" href="http://tojinmachi.sportsclubget.jp" coords="157,123,210,178" shape="rect" alt="TOTAL CONDITIONING GYM 唐人町店" /> <area target="_blank" href="http://franboise.jp" coords="224,123,280,178" shape="rect" alt="フレンチレストラン フランボアーズ" /> <area target="_blank" href="http://www.rakuten.ne.jp/gold/handycaps/" coords="23,205,75,260" shape="rect" alt="帽子専門店 ハンディキャップス" /><area target="_blank" href="http://www.hakushin-net.com" coords="90,205,141,260" shape="rect" alt="博新建設株式会社" /> <area target="_blank" href="http://twilog.org/fakechan" coords="157,205,210,260" shape="rect" alt="Twitter" /> <area target="_blank" href="mailto:fake@ll.to" coords="224,205,280,260" shape="rect" alt="メール(fake@ll.to)" /> <area target="_blank" href="http://health.blogmura.com/ranking.html" coords="290,113,320,168" shape="rect" alt="ブログ村 健康ランキング" /> <area target="_blank" href="http://diet.adkzk-net.com/" coords="290,195,320,250" shape="rect" alt="ダイエット情報リンク集" /> </map></div><div style="position: absolute; top: 67px; left: 235px; z-index: 0;"><img usemap="#linkmap2" src="http://stat.ameba.jp/user_images/20091018/20/haruyu310/a1/5f/p/o0300037110280080212.png" alt="リンク集" /> <map id="linkmap2" name="linkmap2"> <area target="_blank" href="http://health.blogmura.com/ranking.html" coords="23,45,75,98" shape="rect" alt="ブログ村 健康ランキング" /> <area target="_blank" href="http://ameblo.jp/kirakirarin33" coords="90,45,141,98" shape="rect" alt="毎日あなたの幸せを祈っています" /> <area target="_blank" href="http://wjproducts.seesaa.net/" coords="157,45,210,98" shape="rect" alt="美人になる方法" /> <area target="_blank" href="http://ameblo.jp/dameningen1720z/" coords="224,45,280,98" shape="rect" alt="元ニート・バツイチの失はれる物語" /> <area target="_blank" href="http://diet.adkzk-net.com/" coords="23,123,75,178" shape="rect" alt="ダイエット情報リンク集" /> <area target="_blank" href="http://ameblo.jp/wholebalance/" coords="90,123,141,178" shape="rect" alt="人生を豊かにするハーブティー" /> <area target="_blank" href="http://ameblo.jp/minamiyan-allinc" coords="157,123,210,178" shape="rect" alt="みなみやんのHAPPYDAYS☆" /> </map></div>http://diet.adkzk-net.com/</div>'

	var myMsg = document.getElementById('message');
	var myObj = document.getElementById('main');

	myMsg.innerHTML = '';
	myObj.innerHTML = ('<div id="message"><div class="contents"><div class="subContents">' + myTm + '</div></div></div>') + myObj.innerHTML;
}

function postfooters() {
	var myTm ='<div class="post-footer"><div class="post-recommend-title"><div><strong>オススメ記事</strong> こちらも是非どうぞ♪</div></div><div class="post-recommend-body">	<ul><li><a href="http://ameblo.jp/haruyu310/entry-10408123862.html">太りやすい食べ方と各種曲線理論</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10409383957.html">無欲になる方法 期待は欲望の源泉</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10393271585.html">カロリーですべてが分かる？</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10400687614.html">むくみがとれない本当の理由</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10393016409.html">大高酵素、スーパーオータカ</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10373007511.html">毎日酵素を飲んでみて4日目の感想</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10196814417.html">正しい痩せ方</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10331338208.html">食べてはいけないもの</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10342966713.html">酵素の力</a></li><li><a href="http://www.bk-otaku.com/manga/kouso/1.htm">健康マンガ</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10361726717.html">良いカロリーと悪いカロリー</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10359282869.html">牛乳って身体に良いの？</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10351663402.html">太っている人は○○が普通だと思っている</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10366800803.html">お腹周りの肉を落とす方法</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10362904422.html">リバウンドを防ぐ方法</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10366885960.html">腎臓機能を高める方法</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10370566197.html">太る理由</a></li><li><a href="http://ameblo.jp/haruyu310/entry-10364942589.html">そもそも毒素って何？</a></li></ul></div><div class="gruppo"><a href="http://group.ameba.jp/group/-13yP4XxffZP/"><img src="http://stat.ameba.jp/user_images/20091122/21/haruyu310/9d/f4/p/o0500007010315686963.png" alt="グルっぽ 「健康的に痩せる」1日1分で非常識に健康的に" /></a><span>グルっぽもよろしくお願いします<img src="http://stat.ameba.jp/blog/ucs/img/char/char2/139.gif" alt="ニコニコ" /></span></div></div>'

	var myObj = document.getElementsByClassName('contents');

	for (i = 0; i < myObj.length - 1; i++) {
		myObj[i].innerHTML = myObj[i].innerHTML + myTm;
	}
}

window.onload = function() { postfooters(); messageboard(); GSearch.setOnLoadCallback(OnLoad); }