﻿$(document).ready(
	function()
	{
	    var li = $(".sidenav > li > ul");
	    $.each(li, function() { var cur = $(this); $(this).parent().children("a").not(cur).click(function() { cur.toggle(); if ($(this).hasClass("current")) { $(this).removeClass("current"); } else { $(this).addClass("current"); } }); });






	});
