$(document).ready(
  function() 
  {
    $('.cart_button').bind('click', function(){
      var thisID 	= $(this).attr('id');      
      var loading = "<img src='/images/ajax-loader.gif' alt='loading...'/>"; 
      $("#cartdiv").load("/cartadd.php?id="+thisID);
      $("#p"+thisID).html("Товар добавлен <a href=/cart.php>в корзину</a>!");
    });

    $("#buy_yes").bind('click', function(){
      $("#div_buy_yes").show();
      $("#div_buy_no").hide();
    });
    $("#buy_no").bind('click', function(){
      $("#div_buy_yes").hide();
      $("#div_buy_no").show();
    });

    $("#header").load("/inc/js_header.php");
    $("#menu").load("/inc/js_menu.php");
    $("#info").load("/inc/js_info.php");

    
  }
);



  google.load('search', '1', {language : 'ru'});
  google.setOnLoadCallback(function() {
    var customSearchControl = new google.search.CustomSearchControl(
      '014414780383398247069:WMX193008208');

    customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
    var options = new google.search.DrawOptions();
    options.setAutoComplete(true);
    customSearchControl.draw('cse', options);
  }, true);

