//
// Copyright (c) 2008 BroadVision, Inc. All rights reserved.
//
// This software is copyrighted.  Under the copyright laws, this software
// may not be copied, in whole or in part, without prior written consent
// of BroadVision, Inc. or its assignees. This software is provided under
// the terms of a license between BroadVision and the recipient, and its
// use is subject to the terms of that license.
//
// This software may be protected by one or more U.S. and International
// patents. Certain applications of BroadVision One-To-One software are
// covered by U.S. patent 5,710,887.
//
// TRADEMARKS: BroadVision and BroadVision One-To-One are registered
// trademarks of BroadVision, Inc., in the United States and the European
// Community, and are trademarks of BroadVision, Inc., in other
// countries.  The BroadVision logo, is a trademark of BroadVision, Inc.,
// in the United States and other countries. Additionally, IONA and Orbix
// are trademarks of IONA Technologies, Ltd.  RSA, MD5, and RC2 are
// trademarks of RSA Data Security, Inc.
//
  
function addItemToCart(oid, quantity) {
  if (null == quantity) quantity = 1;
  var url = encodeURL("af/page/bv/commerce/shopping/addToCart.do");
  $.getJSON(url,
     { contentId: oid, quantity: quantity, display: 'json' },
     function(json) {
       setCartTotals(json);
     }
   );
}

function setCartTotals(json) {
  $('#cartSubtotal').empty().append(json.subtotal);
  
  $('#iminiTotal').empty().append(json.subtotal);
  $('#iminiItems').empty().append(json.count);
  $('#iminiItemsLabel').empty().append(json.count == 1 ? "item" : "items");
}
