Two fold ... peek in the category_row.php module ...
See where I added FRED?
PHP Code:
$list_box_contents[$row][$col] = array('params' => 'class="categoryListBoxContents"' . ' ' . 'style="width:' . $col_width . '%;"',
'text' => '<a href="' . zen_href_link(FILENAME_DEFAULT, $cPath_new) . '">' . zen_image(DIR_WS_IMAGES . $categories->fields['categories_image'], $categories->fields['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '<br />' . $categories->fields['categories_name'] . '<br>FRED' . '</a>');
Now you want to get in there a:
$categories->fields['categories_description']
However, that would be obtained in the main_template_vars.php of the /pages/index ...
And you will probably want to clean up that $categories->fields['categories_name'] so you don't make messies all over ...