function likeListGetContainer(that){
  var container = that.className.split(' ')[0].split('_');
  container = container.slice(0,self.length-1).join('_');
  return  $('#container_'+ container);
}
function likeListRemove(that){
  $(that.parentNode).load(that.href,{'ajax':1});
}
function likeListAdd(that){
  var container = likeListGetContainer(that);
  if(container && container.length){
    container.load(that.href,{'ajax':1});
  }else{
    $.ajax({href:that.href})
  }
}
function likeListCheck(container, href){
  container.load(href,{'ajax':1});
}



























