function GetNewsAnons(){
	var img = document.createElement('img');
	img.src = '/public/images/loading.gif';
	$('bbc').innerHTML = '';
	$('bbc').appendChild(img);
	var get_srt = 'get_news='+1;
	new Ajax.Request('http://'+document.location.host+'/ajax/bbc.php',
		  { method:'get',
		    parameters: get_srt,
		    onSuccess: function(originalRequest){
		    	var val = originalRequest.responseText;
		    	$('bbc').innerHTML = val;
		    },
		    onFailure: function(){ 
		    	alert('Something went wrong...');
		     }
		  }
	  );
}