
/* - ++theme++fourdigits.theme/javascripts/main.js - */
(function ($) {
    $(document).ready(function(){
        $(".madeinarnhem").hover(function() {
            $(this).attr("src","++theme++fourdigits.theme/images/madeinarnhem.png");
        }, function() {
            $(this).attr("src","++theme++fourdigits.theme/images/madeinarnhem_gray.png");
        });
        $(".coolregion").hover(function() {
            $(this).attr("src","++theme++fourdigits.theme/images/coolregion.png");
        }, function() {
            $(this).attr("src","++theme++fourdigits.theme/images/coolregion_gray.png");
        });
        $(".richtlijnen").hover(function() {
            $(this).attr("src","++theme++fourdigits.theme/images/richtlijnen.png");
        }, function() {
            $(this).attr("src","++theme++fourdigits.theme/images/richtlijnen_gray.png");
        });
        $(".dnv").hover(function() {
            $(this).attr("src","++theme++fourdigits.theme/images/dnv.png");
        }, function() {
            $(this).attr("src","++theme++fourdigits.theme/images/dnv_gray.png");
        });
        $(".plonefoundation").hover(function() {
            $(this).attr("src","++theme++fourdigits.theme/images/plonefoundation.png");
        }, function() {
            $(this).attr("src","++theme++fourdigits.theme/images/plonefoundation_gray.png");
        });

        $("#largetext").removeClass('nonedisplay')
        $("#smalltext").removeClass('nonedisplay')
        $("#normaltext").removeClass('nonedisplay')

        $("#largetext").click(function() {
            setBaseFontSize('largeText',1);
        });
        $("#normaltext").click(function() {
            javascript:setBaseFontSize('',1);
        });
        $("#smalltext").click(function() {
            setBaseFontSize('smallText',1);
        });

    });
}(jQuery));


