$(function() 
{
$('.more').live("click",function() 
{
var ID = $(this).attr("id");
var SHORTID = $(this).attr("id").substring(5);
if(ID)
{
$("#more"+SHORTID).html('<img src="/images/spinner.gif"</img>');
$.ajax({
type: "POST",
url: "/js/ajax_more.php",
data: "lastmsg="+ SHORTID, 
cache: false,
success: function(html){
$("#statecontent").append(html);
$("#more"+SHORTID).remove(); // removing old more button
}
});
}
else
{
$(".morebox").html('The End');// no results
}

return false;
});
});
