$(document).ready(function() {
	
	$("#sidebar ul li[class!=no-arrow]").click(function (event) {
		// Don't close the container if an actual link was clicked.
		if( event.target.tagName.toLowerCase() != 'a' )
			$(this).toggleClass('toggle-on');
	});
	
});

