$(function() {
	// change c2 with c3 order
	$(".c2 + .c3").each(function(){
		$(this).prev(".c2:first").before('<div class="c3">'+$(this).html()+'</div>');
		$(this).remove();
	})

	// clickable
	$(".postlink").click(function(){
		document.location=$(this).find("a:first").attr("href");
	});
	
	// image classes
	$(".post a > img").parent().addClass("withimage");
	$(".post p > a > img").parent().parent().addClass("withimage");
	$(".post p > a.withimage + br").remove();
	
	// image max-width
	$(".col3 img,.c1 img,.c2 img,.c3 img,.c12 img").each(function(){
		if($(this).width()>300)
			$(this).attr("width","300");
	})
	$(".col2 img").each(function(){
		if($(this).width()>450)
			$(this).attr("width","450");
	})

	// add hr
	$("* + .col3").before("<hr/>");
	$("* + .col2").before("<hr/>");
	$("* + .c1").before("<hr/>");
	$("* + .c12").before("<hr/>");
	$(".post ol").before("<hr/>");
	
	// blank targets
	$(".post a").attr("target","_blank");
})