// JavaScript Document

function showInvestigador(href) {
	$('index_content').update('<div class="cargando">Cargando...</div>');
	var url = (href!='') ? 'invest/'+href : 'invest/pending.html';
	new Ajax.Updater('index_content', url, {method: 'get'});
}

function showCatedra(href) {
	$('index_content').update('<div class="cargando">Cargando...</div>');
	var url = (href!='') ? 'catedras/'+href : 'invest/pending.html';
	new Ajax.Updater('index_content', url, {method: 'get'});
}

function showAnuario(href) {
	$('index_content').update('<div class="cargando">Cargando...</div>');
	var url = (href!='') ? 'anuarios/'+href : 'invest/pending.html';
	new Ajax.Updater('index_content', url, {method: 'get'});
}
