// Ajax Request next posts
function getNextPosts(){
	window.scroll(0,0);
    $.ajax({
        type: "POST",
        url: "blogcall/next.php",
        success: function(result){
            jQuery('#blog_content').html(result);
        }
    });
}

// Ajax Request previous posts
function getPrevPosts(){
	window.scroll(0,0);
    $.ajax({
        type: "POST",
        url: "blogcall/prev.php",
        success: function(result){
            jQuery('#blog_content').html(result);
        }
    });
}

// Get Recent Posts
function getRecentPosts(){
	window.scroll(0,0);
    $.ajax({
        type: "POST",
        url: "blogcall/recent.php",
        success: function(result){
            jQuery('#blog_content').html(result);
        }
    });
}

function getCatAllgemeines(){
	window.scroll(0,0);
    $.ajax({
        type: "POST",
        url: "cat_allgemeines.php",
        success: function(result){
            jQuery('#blog_content').html(result);
        }
    });
}
