$( function() {
	
	nav_highlight();

})

// Highlight nav with 'here'
function nav_highlight() {
	
	var total_lit = $('#nav li').hasClass('here');
	
	var body_class = $('body').attr('class').split('/');
		
	if(!total_lit && body_class != '') {
		
		$('#nav li a').each( function() {
			if($(this).attr('href').indexOf(body_class[1]) != -1) {
				$(this).parent().addClass('here');
			}
			
		});
			
	};
	
}