That is kinda over kill, don't you think?
You could just customize the modules using your templates and overrides directory for the center boxes, example for the Featured Centerbox:
/includes/modules/featured_products.php
and copy that to your templates and overrides directory:
/includes/modules/your_templates_dir/featured_products.php
[B]// bof: Do not display categories_id 10 on home page
if ($this_is_home_page) {
$featured_products_query .= " and p.master_categories_id != 10";
}
// eof: Do not display categories_id 10 on home page
[/B]if ($featured_products_query != '') $featured_products = $db->ExecuteRandomMulti($featured_products_query, MAX_DISPLAY_SEARCH_RESULTS_FEATURED);
Just change 10 to your categories_id ...
See if you are able to adapt that for your other centerboxes or else give a yell ...