function getNews(id)
{

		$.post( 'ajax/news.php', { 'id':id}, function( result )
		{
			var sHtml = result;
		
			$("#slides").html( sHtml );
		});
	

}
