$(document).ready( function() {
	
	// Hide all subfolders at startup
	$(".php-file-tree").find("UL").hide();
	
	// Expand/collapse on click
	$(".pft-directory A").click( function() {
		$(this).parent().find("UL:first").slideToggle("medium")
        .queue(function(){
                         
            $('.vscrolling').jScrollPane();
             
             $(this).dequeue();
        });
                        
		/*if( $(this).parent().attr('className') == "pft-directory" ) return false;*/
	});

});
