Im trying to create a site definition using onet.xml in sharepoint 2010. So far things are going well however I am now having a problem getting the subsite to inherit the global navigation from its parent when its created.
my parent nav bar which I want to inherit from

my nav bar when I create my sub site through my site definition

my onet.xml so far
<?xml version="1.0" encoding="utf-8"?>
<Project Title="News Portal" Revision="1" ListDir="$Resources:core,lists_Folder;" xmlns:ows="Microsoft SharePoint" UIVersion="4">
<NavBars>
<!-- Added this in as per answer //-->
<NavBar Name="SharePoint Top Navbar" ID="1002"></NavBar>
</NavBars>
<ListTemplates>
<ListTemplate Name="NewsItems" DisplayName="$Resources:GCSites,GC_NewsPortalTitle;" Type="666" BaseType="0" OnQuickLaunch="TRUE" FolderCreation="TRUE" AllowDeletion="FALSE" Unique="TRUE" DisallowContentTypes="FALSE" SecurityBits="11" Description="News Items" Image="/_layouts/images/itcat.gif">
</ListTemplate>
</ListTemplates>
<DocumentTemplates>
</DocumentTemplates>
<Configurations>
<Configuration ID="0" Name="NewsPortal" MasterUrl="_catalogs/masterpage/inSightMaster2.master">
<Lists>
<List Type="666"
Title="News Items"
Url="$Resources:core,lists_Folder;/$Resources:GCSites,GC_NewsPortalTitle;"
Name="News Portal List"
QuickLaunchUrl="$Resources:core,lists_Folder;/$Resources:GCSites,GC_NewsPortalTitle;/allitems.aspx" />
</Lists>
<SiteFeatures>
</SiteFeatures>
<WebFeatures>
</WebFeatures>
<Modules>
<Module Name="BasicHome" />
<!--<Module Name="NewsPage" />//-->
</Modules>
<WebFeatures>
<!--THESE FEATURES DONT SEEM TO GET PICKED UP //-->
<Feature ID="541F5F57-C847-4e16-B59A-B31E90E6F9EA">
<Properties xmlns="http://schemas.microsoft.com/sharepoint/">
<Property Key="InheritGlobalNavigation" Value="true"/>
<Property Key="ShowSiblings" Value="true"/>
<Property Key="IncludeSubSites" Value="true"/>
</Properties>
</Feature>
</WebFeatures>
</Configuration>
</Configurations>
<Modules>
<!-- Need to implement Modules for page views. For more info please view http://msdn.microsoft.com/en-us/library/ms474369.aspx -->
<!--<module Name="NewsPage" Url="$Resources:core,lists_Folder;/$Resources:GCSites,GC_NewsItemsFolder;" Path="Lists\NewsItems">
<File Url="allitems.aspx" IgnoreIfAlreadyExists="TRUE">
<View List="207" BaseViewID="8" WebPartZoneId="Left" WebPartOrder="1">
<![CDATA[]]>
</View>
</File>
</module>//-->
<Module Name="BasicHome" Url="" Path="">
<File Url="default.aspx" IgnoreIfAlreadyExists="TRUE">
</File>
</Module>
</Modules>
<ServerEmailFooter>$Resources:ServerEmailFooter;</ServerEmailFooter>
my webtemp.newsportal.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- _lcid="1033" _version="14.0.4762" _dal="1" -->
<!-- _LocalBinding -->
<Templates xmlns:ows="Microsoft SharePoint">
<Template Name="NewsPortal" ID="60010">
<Configuration ID="0"
Title="News Portal"
Description="News Portal"
RootWebOnly="FALSE"
Hidden="FALSE"
DisplayCategory="GC Portals" />
</Template>
</Templates>
My current active features:-
Advanced Web Analytics Disposition Approval Workflow Publishing Approval Workflow SharePoint Server Publishing Infrastructure Workflows
Can you see any reason why these navigation settings don't get picked up when I create a site using my new site definition.
Thanks in advance!
Nicholas