function bind_clicks_to_product_details()
{ 
  Event.observe(window, 'load', function() {
   $$('a.details').each(function(el)
    {
      el.observe('click', function(event)
      {

       var anchor = Event.element(event);
       var details_id = anchor.href.replace(/.+?#/,'');
       var productTitle = 'Product Details: ' + el.title;

       Modalbox.show($(details_id).innerHTML, {title: productTitle, width: 800, overlayOpacity: 0.5}); 
       return false; 
      
      });
    });
  });
}
