/**********************************************************************
* /js/dictionary-creation-main.js
* Copyright (C) 2007-2009 Kyoto University
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* 
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
* 
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-
* 1301  USA
***********************************************************************/
/**
 * component/dictionary-creation-edit-dictionary.js
 * component/dictionary-creation-create-dicitoanry-service.js
 * component/dictionary-creation-undeploy-dictionary.js
 */
var DictionaryCreation = Class.create();

var editDictionary = null;
var createDictionaryService = null;
var undeployDictionaryService = null

Event.observe(window,'load',function(){
	
	Toggler.setToggleEvent('edit-dictionary');
	Toggler.setToggleEvent('create-dictionary-service');
	Toggler.setToggleEvent('undeploy-dictionary-service');
	
	//* new HelpPanel("edit-dictionary", "Under writeing.");
	//* new HelpPanel("create-dictionary-service", "Under writeing.");
	//* new HelpPanel("undeploy-dictionary-service", "Under writeing.");

	editDictionary = new EditDictionary();
	deployDictionaryService = new DeployDictionaryService();
	downloadDictionaryService = new DownloadDictionaryService();
	undeployDicitonaryService = new UndeployDictionaryService();
	
	//* LOAD系イベント
	
	//* その他イベント
	

});
