YAHOO.util.Event.onContentReady("ryanmenu", function () {
            
	//	Instantiate a Menu.  The first argument passed to the 
	//	constructor is the id of the element in the DOM that represents 
	//	the Menu instance.
    
    var oMenu = new YAHOO.widget.Menu("ryanmenu", {position:"static",lazyload:true});
    
    
	//	Call the "render" method with no arguments since the markup for 
	//	this Menu instance already exists in the DOM.
    
    oMenu.render();
    

    // Show the Menu instance
    
    oMenu.show();
            
	}
);
