// Display the category name
echo '	<li id="linkcat-' . $cat['link_category'] . '"><h2>' . $cat['cat_name'] . "</h2>\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</li>\n";