
function infoayuda(id) {
var info = [];
info[0] = 'caritaschile.html';
info[1] = 'cruzroja.html';
info[2] = 'donaciones.html';
info[3] = 'voluntarios.html';
$('#info0').removeClass('active');
$('#info1').removeClass('active');
$('#info2').removeClass('active');
$('#info3').removeClass('active');
$('#info' + id).addClass('active');
var url = "http://www.type140.cl/eventos/terremotochile/info/" + info[id];
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET",url,false);
xmlhttp.send(null);
document.getElementById('iinfo').innerHTML=xmlhttp.responseText;
}

}