$().ready(function() {
    
    $("#placenews div:first").show();
    $("ul#listevent li a").click(function () {
        $("#listevent li a").removeClass('selected'); // remove all selected css tags from the UL
        $(this).addClass('selected'); // add selected to the css tag
        var rel = $(this).attr('rel');
        $("#placenews div").hide(); // hide all divs
        $("#"+rel).show();
       // alert('Rel: '+ rel);
        return false;
    });

    $("#tree").treeview({
		collapsed: true,
		animated: "medium",
		control:"#sidetreecontrol",
		persist: "location",
        collapsed: false

	});

});
