
YAHOO.util.Event.onDOMReady(function () {

	YAHOO.namespace("jweb.navigation");
	 var oMenuBar = new YAHOO.widget.MenuBar("pohlman-nav", 
	 	{ 
	 		autosubmenudisplay: true, 
	        hidedelay: 500, 
	        lazyload: false,
	        showdelay: 0,
	        shadow: false,
	        minscrollheight: 300,
	        effect: {effect: YAHOO.widget.ContainerEffect.FADE, duration: 0.25}
	 	}
	 );

	/*
	     Call the "render" method with no arguments since the 
	     markup for this MenuBar instance is already exists in 
	     the page.
	*/
	oMenuBar.render();
	oMenuBar.show();
});

