$(document).ready(function(){
    $("ul li:last-child").addClass("last");
    $("ul li:first-child").addClass("first");
	$(".image_set .image_link:last-child").addClass("last");
    $(".image_set .image_link:first-child").addClass("first");
	$("section h3:last-child").addClass("last");
    $("section h3:first-child").addClass("first");
  });

