$(document).ready(function() {
	$('#ulRedHospitales li a').click(function(e){
		$('#contentRedHospitales').hide('slow').empty();
		e.preventDefault();
		var params = {};
		params['idDoc'] = $(this).attr('href');
		$.ajax({
			url: 'index.php?id=57',
			dataType: 'text',
			data: params,
			success: function(response){
				$("#loading").hide('slow');
				$('#contentRedHospitales').show('slow').append(response);
			}
		})
	});
	$("#loading").ajaxStart(function(){
		   $(this).show();
		 });
	
});
