window.addEvent('domready', function() {


   $$('div.addProd').each(function(i) {
      i.addEvent('click', function(event) {

         event.stop();

         prodID = i.get('id').replace(/[\D]+/,'');

         var req = new Request({
            url: '/order_box.phtml?productid=' + prodID,
            method: 'get',
            onRequest: function() {
               i.getElements('span').set('html', '<img src="/img/loader.gif" width="16" height="16" alt="Loading..." style="border:none;margin-bottom:-4px;">');
            },
            onSuccess: function(responseText) {
              $('orderBox').set('html',responseText);

               i.set('html', 'added');
            }
         }).send();

      });
   });
});


