(function(){
document.write('<span id="footer_script"></span>');
document.getElementById('footer_script').parentNode.parentNode.parentNode.parentNode.parentNode.style.display='none';
var footer_html = '';
footer_html = '<!--footerArea_START-->' +
'<div id="footerArea">' +
'<div id="footerWrap">' +
'<div id="footerContents" class="clearFix">' +
'<dl id="footerContents_left">' +
'<dt>つりの情報を探す</dt>' +
'<dd><ul><li><dl><dt>管理釣り場を探す</dt>' +
'<dd>・<a href="http://fishing.nifty.com/kanritsuriba/">全国管理釣り場・釣り堀ガイド</a></dd></dl></li> ' +
'<li><dl><dt>釣り場の天気</dt> ' +
'<dd>・<a href="http://weather.nifty.com/">都道府県別天気予報</a></dd></dl></li> ' +
'</ul></dd> ' +
'</dl> ' +
'<dl id="footerContents_center"> ' +
'<dt>海釣り情報も満載！</dt> ' +
'<dd><ul><li><dl><dt>釣果情報</dt> ' +
'<dd>・<a href="http://fishing.nifty.com/fishresult.htm">関東の船宿釣果情報</a></dd> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishresult/dispatch/pagemax_pc1/srt_fish/1.htm">魚種で探す</a></dd> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishresult/detail/date_20081008/srt_s2/1.htm">エリアで探す</a></dd></dl></li> ' +
'<li><dl><dt>海釣りスポットを探す</dt> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_port/idx/1.htm">船宿エリア一覧</a></dd> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishspot/top/1.htm">陸っぱり釣り場エリア一覧</a></dd></dl></li> ' +
'</ul></dd> ' +
'</dl> ' +
'<dl id="footerContents_right"> ' +
'<dt>わからない事があったら</dt> ' +
'<dd><ul><li><dl><dt>はじめてフィッシング</dt> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_dictionary/srt_disp/category_000001/1.htm">釣り用語辞典</a></dd></dl></li> ' +
'<li><dl><dt>何でもみんなに聞いてみよう</dt> ' +
'<dd>・<a href="http://fishing.kaiketsu.nifty.com/">Q&A掲示板「釣り人に聞け！」</a></dd></dl></li>' +
'</ul></dd> ' +
'</dl> ' +
'</div><!--//footerContents-->' +
'</div><!--//footerWrap-->' +
'</div><!-- //footerArea -->';
draw_common_footer(footer_html);
function draw_common_footer(footer_html){
var footer = document.getElementById('footer');
if (!footer){
setTimeout(function(){
draw_common_footer(footer_html);
}, 10);
} else {
footer.innerHTML = footer_html;
}
}
})()