$(document).ready(function(){
	$(".navi li a").click(function(){
                $(".navi li ul").hide("slow");
				if (($(this).parent().children("ul").css("display")) == 'none') {
					$(this).parent().children("ul").show("slow");
					}
        }
);
$('#content').jScrollPane();


  });

