// JavaScript Document
    //PETICION DE AJAX PARA INSERTAR
	function init_logo() {
		document.getElementById("logo_stoptravel").style.visibility = "visible";
		document.getElementById("img_upper").style.visibility = "visible";
		document.getElementById("img_bottom").style.visibility = "visible";
	}		
		
		$(document).ready(function(){
    	$.ajax({
      	url:'/auxiliar/get_noticias.php',
      	type:'post',
      	complete: function (resp){
        	$('#noticias_frame').html(resp.responseText);
					init_logo();
					start_news();
      	}
    	});
			
		});