// jQuery Onloads

if (typeof jQuery != 'undefined') {

  function ucn_jQuery_onloads()
  {
    // This locates the link with the ucn_jquery_function attribute of "reset_search_form_then_submit"
    // finds all the select boxes and resets them to the default index
    // then submits the form
    jQuery('a[ucn_jquery_function=reset_search_form_then_submit]').click(function()
      {
        jQuery('#ucn_submit_search select').each(
          function()
          {
            this.selectedIndex = 0;
          }
        );
        jQuery('#ucn_submit_search').submit();
        return false;
      }
    );
  }
  
  // load the jquery onloads
  jQuery(document).ready(
    function(){ 
      ucn_jQuery_onloads();
    }
  );


} // end jquery loaded test
