/**
  * Create the subsidiary widgets areas in footer
  * 
  * Override: childtheme_override_subsidiaries
  */
 function thematic_subsidiaries()
 {
     // action hook for placing content above the subsidiary widget areas
     thematic_abovesubasides();
     // action hook for creating the subsidiary widget areas
     thematic_widget_area_subsidiaries();
     // action hook for placing content below subsidiary widget areas
     thematic_belowsubasides();
 }
<?php

// action hook for placing content above the 'subsidiaries' widget area
thematic_abovesubasides();
// action hook for creating the 'subsidiaries' widget area
widget_area_subsidiaries();
// action hook for placing content below the 'subsidiaries' widget area
thematic_belowsubasides();