/**
 * Updates the cart count on the homepage
 */
function updateCartCount() {
  // Do anything that needs to be done for updating items.
  // WE might bold stuffs or something.
  new Ajax.Updater('session_items', '/store/cart_item_count', { asynchronous:true, });
}
