Bug PanelMenu primefaces 3.4 e 3.5

Boa tarde pessoal

estou fazendo alguns testes com o primefaces 3.4 e 3.5

fiz uma tela de teste apenas com panelMenu do primefaces e ele apresentou um bug.
quando clico na no menu ele exibe os menuItens normalmente mas quando clico novamente ele deveria esconde-los, mas isso não corre. usando a ferramenta de desenvolvimento do chrome na aba console ele esta apresentando os seguintes erros

Uncaught TypeError: Object function (e,bZ){return new bG.fn.init(e,bZ,w)} has no method 'cookie' primefaces.js.xhtml:1
PrimeFaces.getCookie primefaces.js.xhtml:1
PrimeFaces.widget.PanelMenu.PrimeFaces.widget.BaseWidget.extend.restoreState primefaces.js.xhtml:20
PrimeFaces.widget.PanelMenu.PrimeFaces.widget.BaseWidget.extend.init primefaces.js.xhtml:20
f.(anonymous function) primefaces.js.xhtml:1
d primefaces.js.xhtml:1
PrimeFaces.createWidget primefaces.js.xhtml:1
PrimeFaces.cw primefaces.js.xhtml:1
(anonymous function) menu.xhtml:5



Uncaught TypeError: Object #<Object> has no method 'easeInOutCirc' jquery.js.xhtml:21
H.run jquery.js.xhtml:21
b2 jquery.js.xhtml:21
bG.fx.timer jquery.js.xhtml:21
f jquery.js.xhtml:21
bZ jquery.js.xhtml:21
bG.extend.dequeue jquery.js.xhtml:14
(anonymous function) jquery.js.xhtml:14
bG.extend.each jquery.js.xhtml:14
bG.fn.bG.each jquery.js.xhtml:14
bG.fn.extend.queue jquery.js.xhtml:14
bG.fn.extend.animate jquery.js.xhtml:21
bG.fn.(anonymous function) jquery.js.xhtml:21
PrimeFaces.widget.PanelMenu.PrimeFaces.widget.BaseWidget.extend.expandRootSubmenu primefaces.js.xhtml:20
(anonymous function) primefaces.js.xhtml:20
bG.event.dispatch jquery.js.xhtml:14
b6.handle.b4

xhtml

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:p="http://primefaces.org/ui"> 

<h:head></h:head> 
	<h:body> 
	
	<h:form id="menu" prependId="false">
		<p:panelMenu style="width:200px">
			<p:submenu label="Menu1" id="menu1">
				<p:menuitem value="Menu_1.1"/>
				<p:menuitem value="Menu_1.2"/>
			</p:submenu>
			<p:submenu label="Menu2" id="menu2">
				<p:menuitem value="Menu_2.1"/>
				<p:menuitem value="Menu_2.2"/>
			</p:submenu>
		</p:panelMenu>
	</h:form>
		
	</h:body> 
</html>

já adiantando que no console da ide não exibe nenhum erro.

alguém já teve esse problema ?

Estou com o mesmo problema, conseguiu a solução?