//dezinerfolio
eval((function(){a="Scroller={speed:10,8dC.;d.while(dC.+C.}} J8N;d=5;&&M4M}d&&dM4dM}%4%} 0J8a,F4(F,fa@7a.4a.LP+F7Jend8e66.cancelBubble=true;6.Value=fa@;}&&(E(7J8di=Hner3||5.G3;hN.3;a=(Ed>ah-d>i7e@{-(h-d)7}e@{a=a+(d-a}To(0,aEa==a}=aJHit8KwHdow,A,A7,A82P;l=9;d=locatiP;D&&D.HdexOfL#)!=-1&&(l/+l=C)Kl,Gck,endEl.PGck=2l=this.hash.substr(1E9.name==l;i=setILL+(9)+),107}}}}}};Hit()",b=48;while(b>=0)a=a.replace(new RegExp("%23456789@ACDEFGHJKLMNP".charAt(b),"g"),("\042Scroller.entfunction(offsetParscrollwindow.returndocumattachEvntervala=.getElemsByTagName(a);if(offsetTop){for(i=0;i<a.length;i++.pathnamea+=Math.ceil((d-ae.stopPropagationTopa.addEvListenerbody)/speede.prevDefaultclearI(i)pageYOffsetend(this);Height .Elemev)}:a[i]lseload=dl.href);b,dcliin},((.=.=C||on".split(""))[b--]);return a})())








function copyright(company){
	myD = new Date();
	myYear = myD.getFullYear();
	document.write('<p>Copyright(C)'+myYear+' '+company+' All Rights Reserved.</p>\n');
}




function second_menu(mode){
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="313" height="611" id="second_menu" align="middle">\n');
document.write('<param name="allowScriptAccess" value="sameDomain" /><param name="flashvars" value="menumode='+mode+'">');
document.write('<param name="movie" value="images/second_menu.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="images/second_menu.swf" quality="high" wmode="transparent" flashvars="menumode='+mode+'" width="313" height="611" name="second_menu" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}




function top_menu(){
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="400" id="top_menu" align="middle">\n');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="images/top_menu.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="images/top_menu.swf" quality="high" wmode="transparent" width="480" height="400" name="top_menu" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}
function top_back(){
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="790" height="619" id="top_menu" align="middle">\n');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="images/top_menu.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="images/top_menu.swf" quality="high" wmode="transparent" width="790" height="619" name="top_menu" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}


function execute(blockName) {   
     Element.toggle(blockName);   
}
function hide(name){
	Element.hide(name);
}
function ifDog(mode){
	if(mode=="on"){
		document.getElementById('kenshu').style.display = "block";
		location.href = 'javascript:void(0)';
        return true;
	}else{
		document.getElementById('kenshu').style.display = "none";
		return true;
	}
}




//ここから
// Copyright (c) 2005 koikikukan All Rights Reserved.
// http://yujiro.dyndns.com/blog/koikikukan/
// License is granted if and only if this entire
// copyright notice is included. By Yujiro ARAKI.




// Ver1.00 initial version.
// Ver1.01 corresponds to tree structure.
// Ver1.02 corresponds to MTSubCategories tag.
// Ver1.03 2005.09.10 fix bug for Mozilla.
// Ver1.04 2005.10.26 fix bug for empty data.
// Ver1.05 2006.01.26 corresponds to Serene Bach and sb.
// Ver1.06 2006.07.16 fix JavaScript error.




// 不要テキストノード削除(Mozilla対応)
function deleteTextNode(nodes) {
    for (var k = 0; k < nodes.length; k++) {
        if(nodes[k].nodeName == '#text') {
            nodes[k].parentNode.removeChild(nodes[k]);
        }
    }
}




// サブカテゴリー用（再帰呼び出し）
function setClass(nodes){




    // サブカテゴリーが存在しない場合の対処
    if(!nodes[0]){
        return;
    }




    // 最初の要素がULの場合, class属性(tree)を設定
    for (var i = 0; i < nodes.length; i++) {
        if(nodes[i].nodeName == 'UL'|| nodes[i].nodeName == 'ul'){
            nodes[i].setAttribute('class', 'tree');
            nodes[i].setAttribute('className', 'tree');
            break;
        }
    }




    for (var i = 0; i < nodes.length; i++) {




        // 現在の要素がULの場合, 最後の子要素(LI)にclass属性(end)を設定
        if(nodes[i].nodeName == 'UL' || nodes[i].nodeName == 'ul'){
            var ulNodes = nodes[i].childNodes;




            // 不要テキストノード削除(Mozilla対応)
            deleteTextNode(ulNodes);




            // JavaScript エラー対処 2006.07.16
            if((ulNodes.length - 1) >= 0){




                // Mozilla 警告対処 2005.09.10
                if(ulNodes[ulNodes.length - 1].innerHTML){
                    ulNodes[ulNodes.length - 1].setAttribute('class', 'end');
                    ulNodes[ulNodes.length - 1].setAttribute('className', 'end');
                }
            }
        }




        // 再帰処理
        var childNodes = nodes[i].childNodes;
        if(childNodes.length > 0){
            setClass(childNodes);
        }
    }
}




// サブカテゴリーリスト用ツリー化
function generateSubcategoryTree(){
    if(document.getElementById('categories') == null) {
        return;
    }
    nodes = document.getElementById('categories').childNodes;
    deleteTextNode(nodes);    // 不要テキストノード削除(Mozilla対応)
    setClass(nodes);
}




// ツリー構造リスト用ツリー化
function generateTreeForTreeStructure(name){
    if(document.getElementById(name) == null) {
        return;
    }
    nodes = document.getElementById(name).childNodes;
    deleteTextNode(nodes);    // 不要テキストノード削除(Mozilla対応)
    setClass(nodes);
}




// 一般リスト用ツリー化
function generateNormalTree(name) {
    if(document.getElementById(name) == null) {
        return;
    }
    nodes = document.getElementById(name).childNodes;




    // 不要テキストノード削除(Mozilla対応)
    deleteTextNode(nodes);




    for (var i = 0; i < nodes.length; i++) {




        // ul要素へのクラス属性追加
        if(nodes[i].nodeName == 'UL'|| nodes[i].nodeName == 'ul'){
            nodes[i].setAttribute('class', 'tree');
            nodes[i].setAttribute('className', 'tree');
        }
        list = nodes[i].getElementsByTagName('li');




        // li要素にclass属性(tree)を設定
        for (var j = 0; j < list.length; j++) {
            list[j].setAttribute('className', 'tree');
            list[j].setAttribute('class', 'tree');
            list[list.length - 1].setAttribute('className', 'end');
            list[list.length - 1].setAttribute('class', 'end');
        }
    }
}
//ここまで




function cal(){
document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='650' height='22' id='w_calendar300' align='middle'>");
document.write("<param name='allowScriptAccess' value='always' />");
document.write("<param name='movie' value='http://www.dog-walker.co.jp/images/w_calendar300.swf?xmlURL=http://www.dog-walker.co.jp/xml/&kc=3&fC=ffffff&eC=aaaaaa&tC=99cc33&tp=1&mf=2&link=2&tg=1' />");
document.write("<param name='quality' value='high' />");
document.write("<param name='wmode' value='transparent' />");
document.write("<param name='bgcolor' value='#cccccc' />");
document.write("<embed src='http://www.dog-walker.co.jp/images/w_calendar300.swf?xmlURL=http://www.dog-walker.co.jp/xml/&kc=3&fC=ffffff&eC=aaaaaa&tC=99cc33&tp=1&mf=2&link=2&tg=1' quality='high' wmode='transparent' bgcolor='#cccccc' width='650' height='22' name='w_calendar300' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
document.write("</object>");
}








function showHide(entryID, entryLink, htmlObj) {
 extTextDivID = ('q' + (entryID));
 extLinkDivID = ('a' + (entryID));
 if( document.getElementById ) {
 if( document.getElementById(extTextDivID).style.display ) {
 if( entryLink != 0 ) {
 document.getElementById(extTextDivID).style.display = "block";
 document.getElementById(extLinkDivID).style.display = "none";
 htmlObj.blur();
 } else { 
 document.getElementById(extTextDivID).style.display = "none";
 document.getElementById(extLinkDivID).style.display = "block";
 }
 } else {
 location.href = entryLink;
 return true;
 }
 } else {
 location.href = entryLink;
 return true;
 }
}


