$(document).ready(function()
{
	$(".tree").treeview({
		collapsed: false,
		animated: "medium",
		control:"#sidetreecontrol",
		persist: "location"
	});
	
	$(".descriptioner").click(function() { 
		$('.descriptionSpan').slideToggle();
		$(this).toggleClass('gizlendi');
    }); 
});