function readLess(id){
	$('#readless_'+id).hide();
	$('#content_'+id).hide("fast", function() {
		$('#readmore_'+id).show();
		$('#ingress_'+id).show("fast");
	});
}

function readMore(id){
	$('#readmore_'+id).hide();
	$('#ingress_'+id).hide("fast", function() {
		$('#readless_'+id).show();
		$('#content_'+id).show("fast");
	});
}

function showHistoryNews(id){
	
	 $("#historynews").hide(200);
	
	 $.post("/dynfunction/getHistoryNews.php", {"id":id },function(data){
            $("#historynews").html(data);
	    
	    $("#historynews").show(200);
    });
}
