jQuery(function($) {
	$('p').each(function() {
		var this_html = $(this).html();
		this_html = this_html.replace(/^\s+|\s+$/g, '');
		if(this_html == '') {
			$(this).remove();
		}
	});
});
