$(function(){
    $('img.toggle').click(function(){
        if ($(this).attr('src') == '/keisoku/images/plus.gif') {
            $(this).attr('src', '/keisoku/images/minus.gif')
            $('#'+$(this).attr('id')+'_sub').css('display', '');
        } else {
            $(this).attr('src', '/keisoku/images/plus.gif')
            $('#'+$(this).attr('id')+'_sub').css('display', 'none');
        }
    });

    isCheckedOtherShop();

});

    function switchSearchCategory () {
        var category1 = $('#searchCategory1').val();
        $('#searchCategory2Td select').each(function(){
            if ($(this).attr('id') == 'categoryId2_'+category1) {
                $(this).css('display', '');
                $(this).removeAttr('disabled');
            } else {
                $(this).css('display', 'none');
                $(this).attr('disabled', 'disabled');
            }
        });
        return true;
    }

    function isCheckedOtherShop () {
        if ($('#OrderOtherShop').attr('checked') == true) {
            $('#OrderShopname').attr('disabled', true);
            $('#OrderShopname').val('');
            $('#OrderArea').attr('disabled', true);
            $('#OrderArea').val('');
        } else {
            $('#OrderShopname').removeAttr('disabled');
            $('#OrderArea').removeAttr('disabled');
        }
    }