// INIT                                                                                                                                                                                                                                                              
jQuery('a[rel]').attr("rel", "replace");

jQuery('#year').change(function() {
    if (jQuery(this).val() == jQuery('#max_year').val())
        jQuery('#dob_extras').show();
    else
        jQuery('#dob_extras').hide();
});

jQuery('#country').change(function() {
    if (jQuery(this).val() == 'US')
        jQuery('#city_or_zip_label').html('City or Zip:');
    else
        jQuery('#city_or_zip_label').html('City:');
});

jQuery('a.modal').click(function() {
    invokeModal();
    return false;
});

jQuery('a.profile_modal').click(function() {
    openModal(this.id);
    return false;
});

