window.addEvent('domready', function() { var table = $('expensive'); ykill.api('/top/cost', function(kills) { kills.each(function(kill) { table.grab(new Element('tr').adopt( new Element('td').grab(ykill.portrait(kill['ship_type_id'], kill['ship_name'], 'type', '_32.png')), new Element('td', {'html': kill['ship_name']}), new Element('td').grab( new Element('a', { 'href': '/kill/' + kill['kill_id'], 'html': ykill.format_isk(kill['cost'] / (100 * 1000 * 1000 * 1000)) }) ) )); }); }); });