Hello ecommerce!
Please have a look at
http://forum.x-cart.com/viewtopic.php?t=30112&highlight=static+pages.
You have to create two templates, let's say pages_menu_first.tpl and pages_menu_second.tpl.
In the first template file you can say
Code:
{if $pages_menu[pg].orderby < 300}
to display only static pages with a position number lower than 300. In the second template file you say
Code:
{if $pages_menu[pg].orderby > 300}
to display the rest.
Place two boxes in home.tpl by including
Code:
{include file="new_menu_first.tpl" }
and
Code:
{include file="new_menu_second.tpl" }
and let each box address the corresponding pages_menu template.