$(document).ready(function(){
var fetching = false;

function lastPostFunc()
{
fetching = true;
$('div#pokracovani').html('');
$.post("/modules/ajaxloadpage/index.php?lastID="+$(".event:last").attr("id"),

function(data){
if (data != "") {
$(".event:last").after(data);
setTimeout(function(){
fetching = false;
},300);
$('div#pokracovani').empty();
}
});
};

$(window).scroll(function(){
var bufferzone = $(window).scrollTop() * 0.20;
if (!fetching && ($(window).scrollTop() + bufferzone > ($(document).height()- $(window).height() ) )){
lastPostFunc();
}
});
});
