 $(function() {
$(".com_news_element").hide();
$("#com_news_element-1").show();
$(".listbar a").click(function(){
		$("#selected").attr("id",'');
		$(this).attr("id","selected");
		$(".com_news_element").hide();
		$("#com_news_element-"+$(this).text()).show();
		return false;
	});
});