// Hide the Donors Choose promo when the page has been embedded via an IFRAME.
$(document).ready(function () {
  // if (window.parent.frames.length > 0) { $('#header a.promo').css('background', 'none'); }
});

// Control the instructional text inside the search text input.
$(document).ready(function () {
  $('#id_bas_search-button').bind('click', function () {
        var input=$('#id_bas_search-keywords');
        if (input.val() !== input.attr('title')) {
          $(this).parent().submit();
        }
  });
});