// JavaScript Document
/*
$(document).ready(function(){
	$("#left_menu ul li a").click(function(){
		if ($(this).next().slideDown();) {$(this).next().slideDown();}
	});
});
*/
$(document).ready(function(){
 $("#left_menu li a.sel").parent().parent().show("slow");

 $("#left_menu li a").click(function(){
if (($(this).parent().parent().parent().attr("id")== "left_menu")&&($(this).next().size())) {
 if ($(this).next("ul").css("display") == "none"){
 $(this).next("ul").show("slow");
 } else {
 $(this).next("ul").hide("slow");
 }

 return false;
}
 });

}); 
