(function() {

	var CMS = window.CMS || {};
	CMS.apps = function() {};

	var Dom = YAHOO.util.Dom;
	var Event = YAHOO.util.Event;


	//////////////////////////////////////////////////////////////////////////////
	// Admin options button app 
	//////////////////////////////////////////////////////////////////////////////
	
	CMS.apps.AdminOptionButtonsApp = {
		
		init: function() {
			
			// Find set on page
			if ( Dom.get('add_to_container_btn') && Dom.get('add_to_container_menu') )
			{
				// Get the button
				var oButton = Dom.get('add_to_container_btn');
				
				// Get the div element after
				var oDiv = Dom.get('add_to_container_menu');
							
				// Create new button
				var oNewButton = new YAHOO.widget.Button(oButton, { type: 'menu', menu: oDiv });
			}
		}
	};
	
	Event.onDOMReady(CMS.apps.AdminOptionButtonsApp.init, CMS.apps.AdminOptionButtonsApp, true);
			
})();
