// BEGIN LEFT NAV DOWN STATE CODE
	//Look for all links in the left nav
 $(document).ready(function() {
	$('div#leftNav ul li a').each(function(){
		//First we check to see if there should be a down state on page load
		if (('/' + $(this).attr('href')==window.location.pathname + window.location.hash) || ($(this).attr('href')==window.location.hash)){
			$('div#leftNav ul li.active').removeClass('active');
			$(this).parent().addClass('active');
		}
		
		//Then we add a down state to every click on left nav
		$(this).click(function(){
			$('div#leftNav ul li.active').removeClass('active');
			$(this).parent().addClass('active');
		});
	});
});

