
$(function() 
{
	$('.loadMore').live("click",function() 
	{
	var ID = $(this).attr("id");
	if(ID)
	{
	$("#loadMore"+ID).html('<img src="http://www.anibar.com/images/moreajax.gif" />');
	
	$.ajax({
	type: "POST",
	url: "http://www.anibar.com/includes/loadMore.php",
	data: "lastid="+ ID, 
	cache: false,
	success: function(html){
	$(".progi").append(html);
	$("#loadMore"+ID).remove(); // removing old more button
		$(".loadProg").click(function(){
			var id = $(this).attr("id");
			var lang = $(this).attr("lang");
			$("#topArt").load("http://www.anibar.com/includes/loadProg.php?id="+id+"&lang="+lang);
		});
	}
	});
	}
	else
	{
	$(".morebox").remove();// no results
	}
	
	return false;
	});
});
