$(document).ready(function() { 
	$("*:contains('&')", document.body).contents().each(function() { 
		if (this.nodeType == 3) { 
			$(this).replaceWith(this.nodeValue.replace(/&/g, "<span class='amp'>&</span>")); 
		} 
	} 
	); 

		$("#archive_list li:nth-child(3n)").addClass("last"); 
		$(".portfolio_piece:last").addClass("last"); 
	}
);
