function search_() {

   string = document.getElementById('search').value;

   if(string == "") { 

      alert('Puste pole szukaj...'); 

   } else {

      self.location = '/szukaj/'+string+'';

   }

}



function n_add_() {

   string = document.getElementById('newsletter_input').value;

   if(string == "") { 

      alert('Puste pole szukaj...'); 

   } else {

      self.location = '/newsletter/zapisz/'+string+'';

   }

}



function n_del_() {

   string = document.getElementById('newsletter_input').value;

   if(string == "") { 

      alert('Puste pole szukaj...'); 

   } else {

      self.location = '/newsletter/wypisz/'+string+'';

   }

}



$(document).ready(function(){

    $("#nav-one li").hover(

        function(){ $("ul", this).fadeIn("fast"); }, 

        function() { } 

    );

    if (document.all) {

        $("#nav-one li").hoverClass ("sfHover");

    }

});



$.fn.hoverClass = function(c) {

    return this.each(function(){

        $(this).hover( 

            function() { $(this).addClass(c);  },

            function() { $(this).removeClass(c); }

        );

    });

};



