$(function(){var url=window.location.pathname;var navitems=$('#nav ul li a');var pathArray=url.split('/').pop();$.each(navitems,function(i,e){if($(this).attr('href')==url){$(this).parent().addClass('active');}});var projects=$('#projects ul li');$.each(projects,function(i,e){var postID=$(this).attr('id');if($('#'+postID+' span.source p').length>1){var pageTitle=$('#'+postID+' span.source p:first').children();$('li#'+postID+' span#'+postID+'-link-title').text(pageTitle.text());}});if($('#description p').length>1){var pageTitle=$('#description p:first').children();$('#description p:first').hide();$('h1#page-title').text(pageTitle.text());}});