$(document).ready(function(){
	var mostrar_noticia = 1;
	
	// canvi de la noticia de portada	
	function changeNew(){
		$("div#news p").fadeTo("fast", 0 , function(){
			$.get("media/php/get_ticker_portada.php", {num_noticia : mostrar_noticia}, function(data_news) {
				$("div#news p").html(data_news);
				$("div#news p").fadeTo("fast", 1);
			});			
		})
		mostrar_noticia++;
		setTimeout ( changeNew, 4000 );		
	}
	
	setTimeout ( changeNew, 4000 );

});