// Add links to the first page images

$(document).ready(function() {
	
	$(".summary").each(function() {
		var href = $(".more-link a",this).attr("href");
		$("img",this).wrap('<a href="' + href + '"></a>');
	});

});
