(function($) {
  $(document).ready(function(){
    // Search form
    var text = "Я ищу...";
    $("#s").attr("value", text);

    $("#s").focus(function() {
      $(this).addClass("active");
      if($(this).attr("value") == text) $(this).attr("value", "");
    });

    $("#s").blur(function() {
      $(this).removeClass("active");
      if($(this).attr("value") == "") $(this).attr("value", text);
    });
  });
})(jQuery);

