$(document).ready(function () {

    /*
    $("#header_container").click(function () {
    $("#header_container").load("index.html");
    });

    $("#header_section_1").click(function () {
    $("#text_container").show();
    $("#image_container").show();
    $("#gallery_container").show();

    $("#text_container").html("Hier wat tekst");
    OF VERWIJZEN NAAR EXTERN HTML-DOC
    // Performs XMLHttpRequest, works only on a server
    $("#text_container").load("content/section_1.html");

    $("#image_container").html("<img src=\"img/photo_002.jpg\" alt=\"\" \/>");
    });
    */

        $("#content_container").load("content/home.html");
 
    /* header */
    $("#header_container").click(function () {
        $("#content_container").load("content/home.html");
    });

    /* story */
    $("#header_section_st").click(function () {
        $("#content_container").load("content/section_st.html");
    });

    /* idea */
    $("#header_section_id").click(function () {
        $("#content_container").load("content/section_id.html");
    });

    /* products */
    $("#header_section_pr").click(function () {
        $("#content_container").load("content/section_pr.html");
    });

    $("#header_section_pr_us").click(function () {
        $("#content_container").load("content/gallery_container_pr_us.html");
    });

    $("#header_section_pr_in").click(function () {
        $("#content_container").load("content/gallery_container_pr_in.html");
    });

    $("#header_section_pr_ex").click(function () {
        $("#content_container").load("content/gallery_container_pr_ex.html");
    });

    $("#header_section_pr_co").click(function () {
        $("#content_container").load("content/gallery_container_pr_co.html");
    });

    /* graphics */
    $("#header_section_gr").click(function () {

        $("#content_container").load("content/section_gr.html");
    });

    $("#header_section_gr_id").click(function () {
        $("#content_container").load("content/gallery_container_gr_id.html");
    });

    /* photographs */
    $("#header_section_ph").click(function () {
        $("#content_container").load("content/section_ph.html");
    });

    /* contact */
    $("#header_section_co").click(function () {
        $("#content_container").load("content/section_co.html");
    });
});
