function thing() {
	$('#IERoot #body2').wrap('<div id="body_inner"></div>');
	
	var height = $('#body').height();
	var height2 = $('#body').height() - 243;
	$('#IERoot #body').css({
		'height' : height
	});
	$('#IERoot #body_inner').css({
		'height' : height2 + 20
	});
}
$(document).ready(function(){
	//thing();
		
	$('p:last-child').addClass('last-child');
});
