(function($){

  $.fn.serializeList = function(el) {
    if (!el) el = 'li';
    obj = $($(this).get(0));
    var ret = [];
    obj.children(el).each(function() {
      ret.push(this.id.split(/_/).pop());
    });
    return ret;
  };

})(jQuery)
