﻿$(document).ready(function() {
    $('#postalCode').blur(function() {
        $.get('/zip_code/' + $(this).val(), function(data) {
            $('#postalCode_result').html(data);
        });
    });

    $("#Region\\.Id").selectbox();
    $('input[type=checkbox]').prettyCheckboxes();

    var evt = $.browser.msie ? "click" : "change";
    $('input[type=checkbox][id$=_All]').bind(evt, function() {
        checkAllPrettyCheckboxes(this, $('#' + $(this).attr('id').replace('_All', '_Locations')));
    });

    $('#refine_form').hide();

    $('#modify a:first').click(function() {
        $('#refine_form').slideToggle('slow');
    });

});