// Display the category name
echo '	<h3>' . $cat['cat_name'] . "</h3>\n\t<ul>\n";
// Call get_links() with all the appropriate params
get_links($cat['link_category'],
	'<li>',"</li>","\n",
	bool_from_yn($cat['show_images']),
	$orderby,
	bool_from_yn($cat['show_description']),
	bool_from_yn($cat['show_rating']),
	$cat['list_limit'],
	bool_from_yn($cat['show_updated']));

// Close the last category
echo "\n\t</ul>\n";