Dúvida de Templates +JSF 2.0+ Primefaces

Bom dia Caros amigos, estou com um problema para trabalhar com templates e queria ver se alguem sabe como resolver isso.
o problema e o seguinte estou tentando abrir uma pagina sempre no centro do template ate ai tudo bem so que nesse template tem um menu lateral
com algumas opções parecido como um menu TREE VIEW, ou seja
vou expandindo o níveis e quando chego em uma nivel que tenho que clicar para abrir a pagina da mesma o sistema carrega normalmente no centro, só que e depois a TREE volta para o inicio
Parecendo que a pagina deu um refresh.

template.xhtml

[code]

<h:head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Meu Sistema</title>
    <style type="text/css">
        body {background-color: #eeeeee; font-size: 12px}
    </style> 
</h:head>
<h:body>
    <div align="center">
        <p:layout style="min-width:1020px;max-width:1020px;min-height:600px">  
            <p:layoutUnit position="north" size="100">  
                <font style="color: #FF0000"><h1>TOPO DA PAGINA</h1></font>
                <!--<h:graphicImage url="/tema/imagens/topo.jpg" />-->
            </p:layoutUnit>  

            <p:layoutUnit position="west" size="260">  
                <ui:insert name="menu">
                    <h:form>
                        <p:slideMenu style="width: 200px;height: 200px" rendered="true" backLabel="Voltar">
                            <p:submenu label="Cadastros" icon="ui-icon-pin-s">
                                <p:menuitem value="Ler Mensagem" icon="ui-icon-key" action="mensagens.xhtml" />                
                            </p:submenu>
                            <p:submenu ></p:submenu>
                            <p:submenu></p:submenu>
                            <p:submenu></p:submenu>                                
                        </p:slideMenu>
                    </h:form>
                </ui:insert>
            </p:layoutUnit>  
            <p:layoutUnit position="center">  
                <ui:insert name="centro">
                    O que estiver aqui será substituido!
                </ui:insert>
            </p:layoutUnit>  
        </p:layout>  
    </div>
</h:body>
[/code]

mensagens.xhtml

[code]

        <h2>Aqui é a Mensagens!</h2>
            FC Barcelona is one of only three clubs never to have been relegated from La Liga and is the most successful club in Spanish football along with Real Madrid,    
            having won twenty La Liga titles, a record twenty-five Spanish Cups, eight Spanish Super Cups, four Eva Duarte Cups and two League Cups.    
            They are also one of the most successful clubs  in European football having won fourteen official major trophies in total,    
            including ten UEFA competitions. They have won three UEFA Champions League titles, a record four UEFA Cup Winners' Cups, 
    </ui:define>
</ui:decorate>
[/code]

Toda ajuda sera bem vida!

Grato, Warquia P.

Alguem?