function add_to_cart(product_id)
{
    $.ajax({
      type: "GET",
      dataType:"json",
      url: wpBaseURL,
      data: {product_id:product_id,ajax:'true'},
      success: function(data){
          if(data.stat=="success") {
              $('#messageBox').addClass('buy_box').addClass('autoHide');
              $('#messageBox').css('display', 'block');
              $('#messageBox .info_text').html(data.message);
              $('#widgetshoppingcart').replaceWith(data.html);
              $('#subtotal').replaceWith(data.subtotal);
          } else if (data.stat=="error") {
              $('#messageBox').addClass('warning_box').addClass('autoHide');
              $('#messageBox').css('display', 'block');
              $('#messageBox .info_text').html(data.message);
          } else {
              $('#messageBox').addClass('alert_box').addClass('autoHide');
              $('#messageBox').css('display', 'block');
              $('#messageBox .info_text').html(data.message);
          }
          $("#messageBox").delay(5*1000).hide('slow');
      }
    });
}
