There is a manufacturer sidebox in the standard Zencart installation that shows a list of all manufacturers. See this post
You can use this sidebox, or modify it to suit your needs.
Here is the code to link to New Products, Specials and the review page:
If you want to have it as an EZPage, set the internal link as follows
Code:
index.php?main_page=specials
index.php?main_page=reviews
index.php?main_page=products_new
If you want to use it in a PHP file, you can use this code:
Code:
<?php echo '<a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . '<span>' . HEADER_PRODUCTS_NEW . '</span>' . '</a>'; ?>
<?php echo '<a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . '<span>' . HEADER_SPECIALS . '</span>' . '</a>'; ?>
<?php echo '<a href="' . zen_href_link(FILENAME_REVIEWS) . '">' . '<span>' . HEADER_REVIEWS . '</span>' . '</a>'; ?>