Hi,
I am trying to add the manufacturer logo to the manufacturer product listing page. It appears that this code:

Code:
      if (zen_not_null($manufacturer_info_sidebox->fields['manufacturers_image']))
  $content .= '<div class="centeredContent">' . zen_image(DIR_WS_IMAGES . $manufacturer_info_sidebox->fields['manufacturers_image'], $manufacturer_info_sidebox->fields['manufacturers_name']) . '</div>';
is what is used for displaying the image in the sidebox. How can I get access to $manufacturer_info_sidebox from another page? An answer to this will allow me to customize many other aspects of my site. I know some PHP but am not sure how to access this class...what do I have to do to "instantiate" it?? Or whatever I need to do? I'm trying to add this to the index product listing page.