Yes I am navigating between various XPages. Here is the code for the navigator:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="
http://www.ibm.com/xsp/core" xmlns:xe="
http://www.ibm.com/xsp/coreex">
<xp:this.resources>
<xp:styleSheet href="/core.css"></xp:styleSheet>
</xp:this.resources>
<xe:navigator id="navigator1"
styleClass="lotusColLeft .lotusSection h2" expandable="true"
expandLevel="0">
<xe:this.treeNodes>
<xe:basicContainerNode label="Administration"
style="font-size:12pt;font-weight:bold">
<xe:this.children>
<xe:pageTreeNode label="Original Expense Documents"
page="/ViewExpenseV2.xsp" style="font-size:10pt">
</xe:pageTreeNode>
<xe:pageTreeNode label="Submitted Unasssigned"
page="/ViewExpenseSubmitted2.xsp" style="font-size:10pt">
</xe:pageTreeNode>
<xe:pageTreeNode label="Manager Approver List"
page="/ViewApprovalManager.xsp" style="font-size:10pt">
</xe:pageTreeNode>
<xe:basicLeafNode></xe:basicLeafNode>
</xe:this.children>
</xe:basicContainerNode>
<xe:separatorTreeNode rendered="true"></xe:separatorTreeNode>
<xe:basicContainerNode label="Expense Lines"
style="font-size:12pt">
<xe:this.children>
<xe:pageTreeNode label="All Expenses - by line"
page="/ViewExpenseLines.xsp" style="font-size:10pt">
</xe:pageTreeNode>
<xe:pageTreeNode label="Unexported lines"
page="/ViewExpenseLinesUnposted.xsp" style="font-size:10pt">
</xe:pageTreeNode>
<xe:basicLeafNode></xe:basicLeafNode>
</xe:this.children>
</xe:basicContainerNode>
<xe:separatorTreeNode rendered="true"></xe:separatorTreeNode>
<xe:basicContainerNode label="Approval"
style="font-size:12pt">
<xe:this.children>
<xe:pageTreeNode label="Pending Ops Approval"
page="/VwELPendingOpsApprovalByApprover.xsp"
style="font-size:10pt">
</xe:pageTreeNode>
<xe:pageTreeNode label="Ops Approved"
page="/VwELOpsApprovedByApprover.xsp" style="font-size:10pt">
</xe:pageTreeNode>
<xe:pageTreeNode label="Pending Manager Approval"
page="/VwELPendingApproval.xsp" style="font-size:10pt">
</xe:pageTreeNode>
<xe:basicLeafNode></xe:basicLeafNode>
</xe:this.children>
</xe:basicContainerNode>
<xe:separatorTreeNode></xe:separatorTreeNode>
</xe:this.treeNodes>
</xe:navigator>
</xp:view>