$()

in style/js/public.js [88:105]


    $(function() {
        $('#simple_google')
            .submit(function() {
                $('input[name="q"]').val("site:" + document.location.hostname + " " + $('input[name="brooklyn-search"]').val());
                return true;
            });
        $('input[name="brooklyn-search"]').focus(function() {
            if ($(this).val() === $(this).attr('placeholder')) {
                $(this).val('');
            }
        })
            .blur(function() {
                if ($(this).val() === '') {
                    $(this).val($(this).attr('placeholder'));
                }
            })
            .blur();
    });