$(addMenuHandler);

function addMenuHandler() {
    $("span.activator").click(function() {
        $(this).siblings("ul").slideToggle('slow')
    } );

    $("#checkall").click(function(){
        $("form#notify").find('input[type=checkbox]').each(
            function() {

                $(this).attr('checked', $("#checkall").is(":checked"));
            });
    });

    accomodationHandler();

}

function accomodationHandler() {
    var toogles = new Array('OP', 'birth_day', 'birth_month', 'birth_year', 'mesto', 'ulice', 'PSC');

    $('#rezervace').change(function() {

        if ($(this).val() > 1) {
            var vis = "block";
        } else {
            var vis = "none";
        }

        for (var i=0; i< toogles.length; i++) {
            $("#"+toogles[i] + '_parentDiv').css('display', vis);
            $("#"+toogles[i]).attr('disabled', vis!='block');
        }

    });

    $("#rezervace").change();
}
