(function(){var tree=window.tree=function(){return new tree()};tree.init=function(wrapper){if(!wrapper)return false;var expanders=wrapper.getElementsByTagName('SPAN');for(var i in expanders){first.addEvent(expanders[i],'click',function(){tree.expand(this.firstChild)})}};tree.expand=function(expander){var id=expander.id.substr(8,expander.id.length),clip=first.gebi('clip'+id),treeIcon=first.gebi('treeIcon'+id),treeNode=first.gebi('treeNode'+id),treeNodeType=treeNode.getAttribute('name');if(clip){if(clip.style.display=='none'){expander.src='http://'+window.location.host+'/i/dtree/minus3.gif';clip.style.display='block';treeIcon.src='http://'+window.location.host+'/i/dtree/folderOpen.gif';first.setCookie('tree'+id,'1','never','/')}else{expander.src='http://'+window.location.host+'/i/dtree/plus3.gif';clip.style.display='none';treeIcon.src='http://'+window.location.host+'/i/dtree/folderClosed.gif';first.setCookie('tree'+id,'0','erase','/')}}else{first.ajax({type:'GET',url:'http://'+window.location.host+'/lib/controller/actionController.php',data:'controller=cat&mode=ajax_getnode&'+(treeNodeType=='parent'?'parent_id='+id:'child_id='+id),beforeSend:function(){treeIcon.src='http://'+window.location.host+'/i/dtree/indicator6.gif'},success:function(html){clip=document.createElement('DIV');clip.id='clip'+id;clip.className='clip';if(!html)html='<div style="color: red; text-align: center;">Каталог пустой</span>';clip.innerHTML=html;treeNode.parentNode.insertBefore(clip,treeNode.nextSibling);tree.init(clip);expander.src='http://'+window.location.host+'/i/dtree/minus3.gif';treeIcon.src='http://'+window.location.host+'/i/dtree/folderOpen.gif';first.setCookie('tree'+id,'1','never','/')}})}}})();
