var nav = {
	setup: function() {
		$("#local h4+ul").prev().click(nav.clicks);
		$("#local h4+ul").hide();
		$("#local h4+ul").prev().addClass("jslink");
	},
	clicks: function() {
		if ($(this).next()) {
			$(this).next().toggle();
		}
	}
}
//$(document).ready(nav.setup);

$(document).ready(
	function() {
		$("#branding").css("cursor", "pointer");
		$("#branding").click(
			function() {
				window.location = "http://www.kendericks.com/";	
			}
		);
		$("#branding-L").css("cursor", "pointer");
		$("#branding-L").click(
			function() {
				window.location = "http://www.kendericks.com/index-L.html";	
			}
		);
	}
				  );
