';
}
function refreshStats() {
jQuery.getJSON('/api/stats.php',function(data){jQuery('#stats').html('
'+data.users+' miners generating '+(Math.round(data.profit*100000)/100)+'mBTC per day with '+(Math.round(data.power/10)/100)+'kW
'+getStatsTop('Miners',data.miner.gpu.name,statsTopGpu)+getStatsTop('Algorithms',data.miner.gpu.algorithm,statsTopGpu)+getStatsTop('Currencies',data.miner.gpu.currency,statsTopGpu)+getStatsTop('Coins',data.miner.gpu.coinsymbol,statsTopGpu)+getStatsTop('Hardware',data.miner.gpu.type,statsTopGpu)+'
'+getStatsTop('CPU-Miners',data.miner.cpu.name,statsTopCpu)+getStatsTop('CPU-Algorithms',data.miner.cpu.algorithm,statsTopCpu)+getStatsTop('CPU-Currencies',data.miner.cpu.currency,statsTopCpu)+getStatsTop('CPU-Coins',data.miner.cpu.coinsymbol,statsTopCpu)+'
');});
setTimeout(refreshStats,5000);
}
jQuery(document).ready(function() {refreshStats()});
