$(function(){
	if ($('div#entry_hu').length > 0) {
		$.ajax({
			url: '/entry_hu.php',
			success: function(response){
				$('div#entry_hu').html(response);
			}
		});
	}
	if ($('div#entry_en').length > 0) {
		$.ajax({
			url: '/entry_en.php',
			success: function(response){
				$('div#entry_en').html(response);
			}
		});
	}
});
