Event.observe(window, 'load', function() {
  $$('a.addProductToCartButton').each(function(button) {
    var productId = button.id.substr(16);
    button.observe('click', function() {
      site.go({command: 'addToCart', productId: productId});
    });
    button.href = "javascript:void(0);";
    button.show();
  });

  $$('a.productReadMore').each(function(button) {
    //var productId = button.id.substr(15);
    //button.observe('click', function() {
      //site.go({command: 'view', productId: productId});
    //});
    //button.href = "javascript:void(0);";
    button.show();
  });
});
