jQuery(document).ready(function() {
$("#navlist li:last-child #subnavlist").append("
Versi\u00f3n PDF");
jQuery("table#cards").each(function(e) {
if (this) {
var numRepo = $("tr",this).length;
jQuery(this).addClass("S-CARDS cards" + e);
var itemRepo = "";
var a = "", s = "", l = "", f = "",
o = jQuery("");
i = jQuery(".cards" + e + " tr:lt("+numRepo+")"), jQuery(i).each(function(e) {
jQuery("th, td", this).each(function(e) {
switch (e) {
case 0:
a = jQuery(this).text();
break;
case 1:
s = jQuery(this).text();
break;
case 2:
f = jQuery(this).text();
break;
case 3:
l = jQuery("img", this).attr('src');
break;
}
});
itemRepo = ``;
o.append(itemRepo);
});
var c = jQuery("");
c.append(o), jQuery(".S-CARDS").replaceWith(c), jQuery(this).removeClass("S-CARDS");
}
});
});