peticion_http_Servicios = null;

//Servicios
function Servicios() {
	peticion_http_Servicios = inicializa_xhr();
	if(peticion_http_Servicios){
		peticion_http_Servicios.onreadystatechange = muestraServicios;
		peticion_http_Servicios.open("GET", "ap_servicios/servicios.php", true);
		peticion_http_Servicios.send(null);
	}
}

function muestraServicios(){
	if(peticion_http_Servicios.readyState == READY_STATE_COMPLETE){
		if(peticion_http_Servicios.status == 200){
			document.getElementById("pie").style.marginTop = "0px";
			document.getElementById("contenido").innerHTML = peticion_http_Servicios.responseText;
			document.getElementById("cargador").innerHTML ="";
		}
	}else{
		document.getElementById("cargador").innerHTML = "<img src=\"images/loading.gif\" />";	
	}
}
//FIN Servicios
