/*google.load("search", "1");

$(document).ready(function() {
   $("#search").blur(function () {
      if($(this).val() == "") {
         $(this).val("Search...");
         $("#resultbox").css("display", "none"); 
      }
   });

   $("#search").focus(function () {
      if ($(this).val() == "Найти...") {
         $(this).val("");
      }
   });

   $("#search").keyup(function () {
          
      var sc = new GSearchControl();

      sc.addSearcher(new GwebSearch());
      sc.addSearcher(new GvideoSearch());
      sc.addSearcher(new GblogSearch());
      sc.addSearcher(new GnewsSearch());

      var drawOptions = new GdrawOptions();
      drawOptions.setDrawMode(GSearchControl.DRAW_MODE_TABBED);

      var foo;
      sc.setSearchCompleteCallback(foo, function(){
      });

      sc.setNoResultsString(GSearchControl.NO_RESULTS_DEFAULT_STRING);

      sc.draw(document.getElementById("googlesearch"), drawOptions);
      sc.execute(document.getElementById("search").value+" site:www.starbank.ru");
      

   });
});*/

