$(document).ready(function() {
	$('#content .fullpost .fp_text img:first-child, #content .shortpost .sp_text img:first-child ').addClass('first-child');
		$('.shortpost').each(function(){
		$('img.first-child', this).insertAfter($('h2', this));
		$('img.first-child', this).css({width:386})
		});
	$('#main_sidebar .calend tr:last-child, #main_sidebar .calend tr:first-child').addClass('last-child');
	});
	
