$(document).ready(function(){
	$(".inner.frame").each(function() {
		$(this).find("h1:first").css("margin-top", "5px");
		$(this).find("h2:first").css("margin-top", "5px");
	});
	
	// Ta bort bottenbordern och marginalen under sista kommentaren
	$(".jot-row:last").css("border-bottom", "none").css("margin-bottom", "0").css("padding-bottom", "0");
});