// navigation select
$(function(){
  var path = location.pathname.substring(1);
  if ( path )
    $('#navigation a[@href$="' + path + '"]').attr('class', 'selected');
});

// remove empty .article_list div on "experience"
$(function(){
	$(".article_list").each(function() { 
	    if($(this).children().length < 2) 
	        $(this).remove() 
	});
});
