﻿	//TEXTAREA や INPUT の初期値をクリックで消す
    setupDes();

	// Operaで忍者カウンターの訪問数グラフが表示されない問題に対処する
	// http://blog.livedoor.jp/mannendoco_life/archives/51171632.html
	// http://gmr.blog.shinobi.jp/Entry/557/#comment7
	// 忍者カウンター 意地でもOpera対策(笑) 2009/03/18
	(function(){
	var nc = document.getElementById('NINCtCounterSection');
	if(nc){
	nc.style.display = 'block';
	nc.style.width = '210px';
	nc.style.zIndex = '1';
	nc.style.textAlign = 'center';
	}
	// ついでにポップアップグラフの表示位置を微調整
	var ng = document.getElementById('NINCtDrawSection');
	if(ng) ng.style.left = '25px';
	})(); 