var tabne;
$(document).ready(function(){
 $("#tabsNet a").bind("click", function(e){
	  var loading_gif = "<div align=\"center\"><br /><img src='images/load.gif' alt='cargando'> <br />Cargando Contenido...<br /><br /><br /></div>";
	  $("#tabsNet li").removeClass();
	  tabne = this.id.replace(/link/, "");
	  $("#"+tabne).addClass('selected');
	  if(this.rel == "Index"){
		  $("#tabIndex2").hide();
		  $("#tabIndex").show();
	  }else{
		  $("#tabIndex").hide();
		  $("#tabIndex2").show();
		  $("#tabIndex2").html(loading_gif);
	  	  get_pag('mostrar.php?tipo='+this.rel+'&title='+$("#mA").html()+' - '+$("#mC").html()+'&id='+$("#tabI").val(),'tabIndex2');
	  }
    });
  });
