﻿$(document).ready(function () {

    // Code voor oude skin (verwijderen als nieuwe skin gebruikt wordt)

    /*

    $(".themas > div").eq(0).addClass("themasFirst");
    $(".themas > div").eq(1).addClass("themasFirst");
    $(".themas > div").eq(2).addClass("themasFirst");

    $(".themas > div").eq(3).addClass("themasSecond");
    $(".themas > div").eq(4).addClass("themasSecond");
    $(".themas > div").eq(5).addClass("themasSecond");

    $(".themas > div").eq(6).addClass("themasThird");
    $(".themas > div").eq(7).addClass("themasThird");
    $(".themas > div").eq(8).addClass("themasThird");
    $(".themaRight .linklist a:last-child").addClass("noborder");

    */

    // Einde code oude skin

    initMenu();

    $("a").gaDocs({
        parts: ["http", "pdf", "mp3", "youtube", "jpg", "LinkClick"],
        folders: ["externelinks", "publicaties", "audio", "video", "afbeeldingen", "LinkClick"]
    });

    if ($('.catalogsContent .marginall img.detailImage').width() > 236) {
        $('.catalogsContent .marginall img.detailImage').css('width', '236px');
    }
});

function initMenu() {
    $('.accordion .accordionContent').hide();
    $('.accordion h1').addClass('pointer');
    $('.accordion h1').click(
    function () {
        var checkElement = $(this).next();
        $('.accordion .accordionContent:visible').not(checkElement).slideUp('normal').prev().addClass('pointer');

        if ((checkElement.is('.accordionContent')) && (checkElement.is(':visible'))) {
            checkElement.slideUp('normal').prev().addClass('pointer');
        } else {
            checkElement.slideDown('normal').prev().removeClass('pointer');
        }
    }
    );
}
