function superbox_elements_by_theme(elements) {
  var default_width = 600;  // Default width of the superbox window
  var default_height = 400; // Default height of the superbox window
  
  // Remove the existing property-list selector, because it's too general
  for (var i = 0; i < elements.length; i++) {
    if (elements[i].selector == ".property-list .propertyHolder a") {
      elements.splice(i, 1);
    }  
  }
  
  // Add more specific selectors
  elements.push({'selector': '.property-list .propertyHolder a.property-photo', 'width': default_width, 'height': default_height});
  elements.push({'selector': '.property-list .propertyHolder a.more-info-link', 'width': default_width, 'height': default_height});  
}

