(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/cs/catalog/fishing_port/idx/1.htm">船宿エリア一覧</a></dd> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishspot/top/1.htm">陸っぱり釣り場エリア一覧</a></dl></li> ' +
'<li><dl><dt>釣り場天気</dt> ' +
'<dd>・<a href=http://fishing.nifty.com/cs/catalog/fishing_tide/weathertop/1.htm">都道府県別天気予報</a></dd></dl></li> ' +
'<li><dl><dt>釣果情報</dt> ' +
'<dd>・<a href="http://fishing.nifty.com/fishresult.htm">船宿釣果情報Top</a></dd> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishresult/detail/date_20081008/srt_s2/1.htm">エリアで探す</a></dd>' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishresult/dispatch/pagemax_pc1/srt_fish/1.htm">魚種で探す</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/info/index.htm">つり通信</a></dd></dl></li> ' +
'<li><dl><dt>みんなの生の声</dt> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishreport/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/fishing/files/beginners/kiso01.jsp">海釣り基礎知識</a></dd> ' +
'<dd>・<a href="http://fishing.nifty.com/fishing/files/beginners/weather01.jsp">天気予報の利用法</a></dd>' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_dictionary/srt_disp/category_000001/1.htm">釣り用語辞典</a></dd>' +
'<dd>・<a href="http://fishing.nifty.com/fishing/files/beginners/uki01.jsp">ウキ釣り入門</a></dd>' +
'<dd>・<a href="http://fishing.nifty.com/fishing/files/beginners/sabiki01.jsp">サビキ釣り入門</a></dd>' +
'<dd>・<a href="http://fishing.nifty.com/fishing/files/beginners/nage01.jsp">投げ釣り入門</a></dd></dl></li> ' +
'<li><dl><dt>魚攻略ガイド</dt> ' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishkind/idx/1.htm">釣期で見る－50音順</a></dd>' +
'<dd>・<a href="http://fishing.nifty.com/cs/catalog/fishing_fishkind/idx/fishpage_2/fishtype_1/1.htm#fishkindTitle">食べごろで見る－50音順</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;
}
}
})()