var simpleTreeCollection;
$(document).ready(function() {
	simpleTreeCollection = $('#LeftMenu33 ul').simpleTree({
		autoclose: true,
		afterClick:function(node){			
			if ( (node.is('.doc')) || (node.is('.doc-last'))   ){
				location.href = $('a',node).attr("href");
			}
		},
		afterDblClick:function(node){
			//alert("text-"+$('span:first',node).text());
		},
		afterMove:function(destination, source, pos){
			//alert("destination-"+destination.attr('id')+" source-"+source.attr('id')+" pos-"+pos);
		},
		afterAjax:function()
		{
			//alert('Loaded');
		},
		animate:true
		//,docToFolderConvert:true
     });
});
