Número de animais mortos para carne, leite e ovos, desde que você abriu esta página. Isto não inclui os bilhões de peixes e outros animais aquáticos mortos anualmente, pois o número é imensurável.
Baseado nas estatísticas de 2007 da FAO (Food and Agriculture Organization)
//Based on 2007 Food and Agriculture Organization of the United Nations'
//Global Livestock Production and Health Atlas
//http://www.abolitionistapproach.com/media/pdf/2007-statistics.pdf.
//Traduzido de http://www.beautomated.com/counter/
var animals_per_year = new Array(
new Array("bufalos", 23199336),
new Array("camelos", 1501799),
new Array("bois e vacas", 301275455),
new Array("galinhas", 49877536490),
new Array("patos", 2676365000),
new Array("cabras", 402611664),
new Array("cavalos", 5018470),
new Array("porcos", 1375940758),
new Array("ovelhas", 564785251),
new Array("perus", 635382008)
);
var seconds_elapsed = 0;
var seconds_per_year = 365.256366 * 24 * 60 * 60;
function runCounter() { for (var i = 0; i < animals_per_year.length; i++) { var current = animals_per_year[i][1] /
seconds_per_year * seconds_elapsed; document.getElementById("counter" + i).innerHTML = addCommas("" + Math.floor
(current)) + " " + animals_per_year[i][0]; } seconds_elapsed += 0.25; setTimeout("runCounter()", 250); }
function addCommas(sValue) { var sRegExp = new RegExp("(-?[0-9]+)([0-9])"); while (sRegExp.test(sValue)) { sValue =
sValue.replace(sRegExp, "$1,$2"); } return sValue; }
runCounter();