/* vim: set ts=2 sts=2 sw=2 : */

IDKIT.init({appId: '725170'});

$(function() {

  $('#nav a').hover(function() {
    $(this).find('span').stop()
      .css({
        backgroundPosition: '-20px center',
        paddingLeft: '21px'
      })
      .animate({
        backgroundPosition: '9px center',
        paddingLeft: '36px'
      }, 150);
  }, function() {
    $(this).find('span').stop().animate({
      backgroundPosition: '-20px center',
      paddingLeft: '21px'
    }, 150);
  });

  $('#logout').live('click', function() {
    var href = $(this).attr('href');
    IDKIT.logout(function() {
      window.location = href;
    });
    return false;
  });

});

