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