$(document).ready(function(){
	//去掉新闻首行的换行
	$("#content").contents().each(function(){
		if($(this).attr("tagName") == "BR") {
			$(this).remove();
			return true;
		} else if (!$(this).get(0).data && !$(this).attr("innerHTML")) {
			return true;
		}
		return false;
	});

	//给BR设置一个与P一样的高度
	$("#content").find("br").each(function(){
		$(this).after("<div class='p'></div>");
	});
})
