function proximos(id){
    $("#cont_acciones").html(null);
	document.getElementById("tab0").className="tab_cursos";
	document.getElementById("tab1").className="tab_cursos";
	document.getElementById("tab2").className="tab_cursos";
	document.getElementById("tab3").className="tab_cursos";
	
	document.getElementById("tab"+id).className="tab_cursos tab_activo";
	
	switch(id){
	case 3: cat="todos"; break;
	case 0: cat="gratuitos para empleados"; break;
	case 1: cat="gratuitos para desempleados"; break;
	case 2: cat="otros"; break;
	}
	
	$.ajax({ url: "http://"+window.location.hostname+"/proc/ajax_acciones.php?cat="+cat, success: function(html){
	    $("#cont_acciones").html(html);
      }});	
}
function news(id){
    $("#cont_news").html(null);
	document.getElementById("ntab0").className="tab_news";
	document.getElementById("ntab1").className="tab_news";
	document.getElementById("ntab2").className="tab_news";
	
	document.getElementById("ntab"+id).className="tab_news tab_news_activo";
	
	switch(id){
	case 0: cat="formacion"; break;
	case 1: cat="oposiciones"; break;
	case 2: cat="cursos"; break;
	}
	
	$.ajax({ url: "http://"+window.location.hostname+"/proc/ajax_news.php?cat="+cat, success: function(html){
	    $("#cont_news").html(html);
      }});
	
}
