function _news_hide_all() {
	$("#table_news tr[id*=content]").css("display", "none");
}

function _news_show(element) {
	_news_hide_all();
	$("#" + element.id + "+tr").css("display", "block");
}

$(function() {
		$("#table_news tr[id*=header]").click(function() { _news_show(this) });
		_news_hide_all();
	});
