$(document).ready(function() {
	$(".nav > li > a").click(function() {
		if(!$(this).hasClass("no-menu")) {
			$("ul", $(this).parent()).slideToggle("normal");
			$(this).parent().parent().toggleClass("nav-with-border");
			return false;
		}
	});
	$(".nav > li > a:not(.no-menu)").addClass("menu-link-no-change"); // Set expandable menus not to change colour for visiting the link
	$(".nav ul").hide();
});
