/*
 * iZ-smart.net - (c) 2011
 * 
 * Christian Boenning <hexa@iZ-smart.net>
 *
*/

$(function () {
  if ($('#currentusers').length > 0) {
    $('#currentusers').html('');
    $.getJSON('http://wwwapi.iZ-smart.net/2/netinfo/json/?jsoncallback=?', {
      'cache': Math.random()
    }, function (data) {
      if (data.netinfo.users !== undefined) {
        $('#currentusers').html('Im Moment sind <span title="Davon sind ' + data.netinfo.bots + ' Bots"><strong>' + data.netinfo.users + ' Chatter</strong></span> in <strong>' + data.netinfo.chans + ' Channeln</strong> auf <a href="http://www.iZ-smart.net/"><strong>irc.iZ-smart.net</strong></a> online');
      } else {
        $('#currentusers').html('Ajax-Error');
      }
    });
  }
});

/* jslint sloppy: true, plusplus: true, maxerr: 50, indent: 2, global: $, document */

