
if (Drupal.jsEnabled) {
  $(document).ready(function() {

    $('.ff_clear_link').each(function() {
      var el = $(this);
      el.mousedown(function(){return!1;});
    });

    $('.form-item .description').hover(
      function(){$(this).addClass('description-hover');},
      function(){$(this).removeClass('description-hover');
    });

 /* ------------------- */

    try{
      var SBFK = $('#edit-search-block-form-1');
      SBFK.focus(nx_hint_show);
      SBFK.blur(nx_hint_hide);
      nx_hint_hide.call(SBFK);
    }catch(e){}

  });
}

 /* ------------------------------------------------------------------------ */

    function nx_hint_show(){
      if($(this).attr('value')==''){
         $(this).removeClass($(this).attr('id')+'-Hint');
      }
    }

    function nx_hint_hide(){
      if($(this).attr('value')==''){
         $(this).addClass($(this).attr('id')+'-Hint');
      }
    }