here is where i got to with the php.
Code:
<?php
$content = "";
$featured_box_counter = 1;
while (!$random_featured_product->EOF);
$featured_box_counter++; {
$content .= 'leftrightslide[$featured_box_counter]=';
$content .= '<a href="' . zen_href_link(zen_get_info_page($random_featured_product->fields["products_id"]), 'cPath=' . zen_get_generated_category_path_rev($random_featured_product->fields["master_categories_id"]) . '&products_id=' . $random_featured_product->fields["products_id"]) . '">' . zen_image(DIR_WS_IMAGES . $random_featured_product->fields['products_image'], $random_featured_product->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
$content .= '</a>'';
$random_featured_product->MoveNextRandom();
}
?>