function regeneruj() {
	$.ajax({
		url: "regeneruj.php",
		cache: false,
		success: function(html){
			//$("#ajax_sesja").append(html);
		}
	});
}

setInterval("regeneruj()",180000);


$(window).unload(function() {
	clearInterval();
});
