(function($) {
  
  $('li#add-advert a').live('click',function(){
    alert('Pro přidání inzerátu musíte být přihlášeni');
    
  });




  $.fn.tmStats = function(id, type) {
    return this.each(function() {
      this._id = id;
      this._type = type;
      $(this).click(onClick);
    });

    function onClick() {
      $(this).tmStatsHit(this._id, this._type)  
      return false;
    }
  }
  $.fn.tmStatsHit = function(id, type) {
    $.get('/stats-hit/'+id+'/'+type);
  }
  
})(jQuery);
