$(document).ready(function() { 

    $( '.avtorisate' ).bind( 'click', function( ev ){
      $( '#login-form-layer' ).fadeIn();
      $( this ).addClass( 'avtorisate-active' );
    });
    
    $( '.avtorisate-close' ).bind( 'click', function( ev ){
      $( '#login-form-layer' ).fadeOut();
      $( '.avtorisate' ).removeClass( 'avtorisate-active' );
    });
    
    $( '#login-form' ).ajaxForm({
        success:   function( data ){
          if( data.search('loginOK') >= 0 ){
            window.location.reload();
          }
        } 
    }); 
    
    $( '#search-text' ).bind( 'click', function( ev ){
      $( this ).val( 
        $( this ).val() == 'ПОИСК НА СКЛАДЕ' ? '' : $( this ).val()
      );
    });
});

