If you are not planning to use details page for any of the images in that category, you can it this way:
in details.php find:$random_cat_image = (defined("SHOW_RANDOM_IMAGE") && SHOW_RANDOM_IMAGE == 0) ? "" : get_random_image($cat_id);
Insert above:if (in_array($cat_id, array(1,2,3,4,5,6,7)))
{
header("Location: ".$site_sess->url(ROOT_PATH."categories.php?cat_id=".$cat_id, "&"));
exit;
}
update the array with list the categories IDs.
It will redirect any requests for details.php to the parent category where the image is.