def self.vote_up_an(current_object,user)
        a = current_object.activities.build(:user_id=>user.id,:name=>'vote_up')
        a.build_points(:value=>APP_REPUTATION['vote_up_an'])
        a.build_points(:reduce_points_if_needed=>true,:user_id=>current_object.user.id,:value=>APP_REPUTATION['an_receives_up_vote'])
        self.on_vote_an(current_object,user)