$(document).ready(function() {
    $('a.enlarge').lightBox({fixedNavigation:true});
    $('textarea.expanding').autogrow();
});

function _check_orderdelivery() {

    if ( $("input[name='afleveradres_gelijk_aan_factuuradres']").is(':checked') ) {
        $(".toggle-orderdelivery").each(function () {
            $(this).attr({'disabled':true});
        });
    }
    else {
        $(".toggle-orderdelivery").each(function () {
            $(this).attr({'disabled':false});
        });
    }
}
