/* 
*  NacreData L.L.C.
*  PO Box 646 Chapel Hill, NC 27514
*  (919) 442-8899
*  info@nacredata.com 
*/

jQuery(document).ready( 
  function() { 
    jQuery("#main_search").focus( function() {
        if( "the directory" == $(this).val() ) {
          $(this).val("");
        }
      }
    );
    jQuery("#main_search").blur( function() {
        if( "" == $(this).val() ) {
          $(this).val("the directory");
        }
      }
    );
    jQuery("img[src$=.png]").ifixpng(); 
    var $dir_search = jQuery("#dir_search");
    if( $dir_search ) {
      $dir_search.focus( function() {
          if( "Search by Keyword" == $(this).val() ) {
            $(this).val("");
          }
        }
      );
      $dir_search.blur( function() {
          if( "" == $(this).val() ) {
            $(this).val("Search by Keyword");
          }
        }
      );
    }
  }
);

