$(function() {
    // Nieuwsbrief
    $("#aanmelden").click(function(){
        $("#nieuwsbrief").submit();   
    });
    $("#afmelden").click(function(){ 
        $("#nieuwsbrief").attr("action", "/nieuwsbrief/afmelden").submit();
    });

    // Catalogus
    $("#catalogus_zoek").click(function() {
        $("#catalogus").submit();
    });
    $("#catalogus a").click(function() {
        var clickedId = $(this).attr("id");
        if ($("#" + clickedId + "_value").length) {
            ($("#" + clickedId + "_value")).remove();
        } else {
            //Aanmaken van postwaarde
            $('<input type="hidden" id="' + (clickedId + "_value")  +  '" name="' + clickedId +  '" />').appendTo($("#catalogus"));
        }
        $(this).toggleClass("checkbox_selected");
    });

    // Poll
    $("#poll a").click(function(){
         $.ajax({
           type: "GET",
           url:  "/poll/" + $(this).attr("id"),
           success: function(msg){
                $("#poll").html(msg);
           }
         });
     });

    // Branche Links
    $("#branchelinks li").click(function(e) {
        if ($(this).attr('class') === '') {
            window.location = e.target.href;
            return;
        }
        $("#branchelinks li ul").hide();
        $('#' + $(this).attr('class')).show();
        return false;
    });

});