YAHOO.example.onMenuReady = function() {
	var oMenu = new YAHOO.widget.Menu("productsandservices", { fixedcenter:false, visible:true, position:"static" });
	oMenu.showEvent.subscribe(function() { this.focus(); });
	oMenu.render();
	YAHOO.util.Event.addListener("menutoggle", "click", oMenu.show, null, oMenu); 
};
YAHOO.util.Event.onContentReady("productsandservices", YAHOO.example.onMenuReady);