/* SCRIPT PARA LOS TABS DE INICIO */  
(function($) {
$(document).ready(function(){

  $(".tab_content").hide();
  if($("#activa-c").val() == "prueba"){
    $(".tabs li:nth-child(2)").addClass("active").show();
    $(".tab_content:nth-child(2)").show();
  }else{
    $(".tabs li:first").addClass("active").show();
    $(".tab_content:first").show();
  }
  $(".tabs li").click(function(){
    $(".tabs li").removeClass("active");
    $(this).addClass("active");
    $(".tab_content").hide();
    var tabactual = $(this).find("a").attr("href");
    $(tabactual).fadeIn();
    return false;
  });
  
  /* SCRIPT PARA LOS MENSAJES DE RETRO DE ACTIVACION (HOME)*/
  setTimeout(function(){ $("#retro_activ").fadeOut(800).fadeIn(800).fadeOut(500).fadeIn(500).fadeOut(300).fadeIn(300);}, 2000);
  $(".err").hide(); 
  $(".err2").hide();

});
})(jQuery);

