// jQuery Classes
$(document).ready(function(){
	$("#photos .entry").each(function(index){
		if(index%3==2) $(this).addClass("last");
	});
});
