$(function() {
  $('.more').live("click",function() {
    var ID = $(this).attr("id");
    var ID2 = $('.morebox').attr("id");
    if(ID) {
        $("#"+ID2).html('<img src="/images/moreajax.gif" />');

        $.ajax ({
          type: "POST",
          url: "/phpincludes/ajax_more.php",
          data: "lastmsg="+ ID, 
          cache: false,
          success: function(html){
            $("div#updates").append(html);
            $("#"+ID2).remove();
          }
        });
    } else {
      $(".morebox").html('Beigas');
    }
  return false;
});
});
