function TIMEOUT_toggleTree(anchor,anchorClimb,anchorSibling,parentClimb,parentSibling){var treeList=null;var tempParent=anchor.parentNode;for(var i=1;i<parentClimb;i++){tempParent=anchor.parentNode;}
var parent=$(tempParent);if(parentSibling=="next"){treeList=parent.next();}
if(parentSibling=="previous"){treeList=parent.previous();}
if(anchor){var thisAnchor=$(anchor);for(var i=0;i<anchorClimb;i++){thisAnchor=thisAnchor.parentNode;}
var anchorObject=$(thisAnchor);if(anchorSibling=="next"){anchorObject=anchorObject.next();}
if(anchorSibling=="previous"){anchorObject=anchorObject.previous();}
if(anchorObject.hasClassName('TP_button')){if(anchorObject.hasClassName('true')){anchorObject.removeClassName('true');anchorObject.addClassName('false');}else{anchorObject.removeClassName('false');anchorObject.addClassName('true');}}}
treeList.toggle();return null;}
