function displayNewsItem(id){
	$.get("ajax_news_display_item.php", {id:id}, function(data){
		$("#item").html(data);
	});
}

function displayNewsItemsForPage(pg){
	$.get("ajax_news_display_items_for_page.php", {pg:pg}, function(data){
		$("#items").html(data);
	});
}

