$(document).ready(function(){
      $('#fullsearch').click(function(){
                            
           if($(this).hasClass('opened'))
           {
             $(this).removeClass('opened');
             $(this).html('Rozwin');
             $('.hidden_search').fadeOut('slow');                            
                                
           }
           else
            {
              $(this).addClass('opened');
              $(this).html('Zwin');
              $('.hidden_search').fadeIn('slow');
             }
                        
         });    

});
