function instanciateMenuBar (p_oEvent) {
	// Instantiate and render the menu bar
	var oMenuBar = new YAHOO.widget.MenuBar(this, { autosubmenudisplay:true, showdelay:100, hidedelay:200, lazyload:true });
	oMenuBar.render();
}

function instanciateMenu (p_oEvent) {
	// Instantiate and render the menu
	var oMenu = new YAHOO.widget.Menu(this, { position:"static", autosubmenudisplay:true, showdelay:100, hidedelay:200, lazyload:true });
	oMenu.render();
}

// Initialize and render the menu bar when it is available in the DOM
YAHOO.util.Event.onContentReady("Yui", instanciateMenu);


YAHOO.util.Event.onContentReady("StayInformedForm", function() {
	YAHOO.util.Dom.get('fld1').value = 'enter email';
	YAHOO.util.Event.addListener('fld1', 'focus', function() {
		YAHOO.util.Dom.get('fld1').value = '';
	});
});