$(document).ready(function() {
	 
	$("div#sideBar ul > li").click(function(e){
		 
		 if($(this).find("div:first").is(':visible')) {
			 $(this).find("div:first").slideUp('slow');
			 return false;
		 }
		 
		 $(this).parent("ul").find("div").slideUp('slow');
	
		 if ($(this).find("div:first ul li").length!=0) {
			 $(this).find("div:first").slideDown('slow');
		 }
			
		 e.stopPropagation();
	});

	$("div.thirdLevel li").click(function(e){
		e.stopPropagation();
	});
	 
});

