
$(document).ready(function (){

	
	$("#category").dynatree({
		onActivate: function(node) {
			// A DynaTreeNode object is passed to the activation handler
			// Note: we also get this event, if persistence is on, and the page is reloaded.
			//alert("You activated " + node.data.title);
			//console.log(node.data.title+":"+node.data.id);
		},
		checkbox: true,
		selectMode: 3,
		strings: {
			loading: "Моля, изчакайте...",
			loadError: "Грешка при зареждане на категориите!"
		},
		persist: true,
		initAjax: {url: "getData.php?ctl=categories"},
		debugLevel: 0
    });

});
