function rss_view(){
	var blog_view = document.getElementById('blog_view');
	var blog_rss = '<ul class="rss_ul" style="line-height:16px; list-style-image:none;"><li class="rss_li" style="list-style-image:none; list-style-type: none; "><a href="http://cplus.if-n.biz/5001481/article/0107001.html" target="_blank" class="rss_link">(2009-01-03)  遅ればせながら新年の御挨拶に</a><br><span class="rss_description">　みなさま！新年明けましておめでとうございます。昨年はたく...</span></li><li class="rss_li" style="list-style-image:none; list-style-type: none; "><a href="http://cplus.if-n.biz/5001481/article/0106363.html" target="_blank" class="rss_link">(2008-12-27)  長い間</a><br><span class="rss_description">　更新できませんでしたm(__)m今日のお客様からの差し入れです...</span></li><li class="rss_li" style="list-style-image:none; list-style-type: none; "><a href="http://cplus.if-n.biz/5001481/article/0104322.html" target="_blank" class="rss_link">(2008-12-15)  年末のお休みのお知らせ</a><br><span class="rss_description">　今年もお客さまに支えられ、そして新しいスタッフに支えられ...</span></li><li class="rss_li" style="list-style-image:none; list-style-type: none; "><a href="http://cplus.if-n.biz/5001481/article/0102949.html" target="_blank" class="rss_link">(2008-12-06)  ハッピーウェディング</a><br><span class="rss_description">　先日お客様が結婚されました！タンタッタターン♪タンタッタタ...</span></li><li class="rss_li" style="list-style-image:none; list-style-type: none; "><a href="http://cplus.if-n.biz/5001481/article/0102726.html" target="_blank" class="rss_link">(2008-12-05)  クリスマスイルミネーションパート２</a><br><span class="rss_description">　その後に六本木のミッドタウンへヒルズのイルミネーションは...</span></li></ul>';
	blog_view.innerHTML = blog_rss;
}

function addEvent(object, type, handler)
{
	if (object.addEventListener) {
		object.addEventListener(type, handler, false);
	} else if (object.attachEvent) {
		object.attachEvent(['on',type].join(''),handler);
	} else {
		object[['on',type].join('')] = handler;
	}
}

addEvent(window,'load',function() {
	rss_view();
});
