var temp = document.title;
	document.title = temp;
	temp = temp.replace(" | Ben Klinger | Portfolio","");
	var current_html;
  $(document).ready(function() {

	$("li a").each(function(){
		
		if($(this).html() == temp){
			
			current_html = $(this).html();
			current_html = current_html.replace("›","");
			current_html = "› " + $(this).html();
			
			$(this).html(current_html);
			$(this).parent().addClass('selected');
		}
		
	});
	
  });


