/*
	*	File:		ecms_config.js
	*	Name:		Expandable/Collapsible Menu System
	*	Date:		2001-10-06

	*	Author:		Ben Boyle
	*	Email:		bboyle@inspire.server101.com

	*	Platform:	all javascript browsers

	Configuration file for dynamic expandable/collapsible menu.
	Remove the // from comments and adjust properties to suit.

	see instructions online:
	http://inspire.server101.com/scripts/ecms/


	Functions to control menu from HTML:
		ECMS_expand_all()		(expand entire menu)
		ECMS_collapse_all()		(collapse entire menu)
		ECMS_expand('name')		(expand named menu folder)
		ECMS_collapse('name')	(collapse named menu folder)
	note: to expand/collapse a named subfolder, its parent must be expanded

	CSS display configuration classes (class names can be customised):
		.bullet		(a menu link that does not contain child items)
		.collapsed	(a menu parent that is closed)
		.expanded	(a menu parent that is open)

	CSS platform dependant styles:
		IE 4/5, N6	(DIV.stylename)
		Netscape 4x	(LAYER.stylename)
		default		(LI.stylename)

	CSS examples:
		DIV.bullet { font-weight: normal; }
		DIV.collapsed { font-weight: bold; }
		DIV.expanded { font-weight: bold; }
		LAYER.bullet { font-weight: normal; }
		LAYER.collapsed { font-weight: bold; }
		LAYER.expanded { font-weight: bold; }
		LI.bullet { font-weight: normal; list-style-type: disc; list-style-image: url(bullet.gif); }
		LI.expanded { font-weight: bold; list-style-type: circle; list-style-image: url(expanded.gif); margin-bottom: 0px; margin-left: 15px; margin-top: 0px; }

*/

/*
	menu classes
	- bullet (menu item)
	- collapsed (collapsed menu item which expands when clicked)
	- expanded (expanded menu item which collapses with clicked)
*/
ECMS_class_bullet = 'bullet';
ECMS_class_collapsed = 'collapsed';
ECMS_class_expanded = 'expanded';

/*
	menu images (not used by default system)
	- bullet (menu item)
	- collapsed (collapsed menu item which expands when clicked)
	- expanded (expanded menu item which collapses with clicked)
*/
ECMS_image_bullet.src = 'bullet.gif';
ECMS_image_collapsed.src = 'collapsed.gif';
ECMS_image_expanded.src = 'expanded.gif';

/*
	menu images ALT text (not used by default system)
	- bullet (menu item)
	- collapsed (collapsed menu item which expands when clicked)
	- expanded (expanded menu item which collapses with clicked)
*/
ECMS_image_bullet.alt = '';
ECMS_image_collapsed.alt = 'menu (show)';
ECMS_image_expanded.alt = 'menu (hide)';

/*
	indent menu items (pixel measurement from left margin)
*/
ECMS_menu_indent = 10;

/*
	height of fully expanded menu for netscape 4 (pixel measurement)
	this is to ensure enough space reserved for the menu
*/
//ECMS_menu_height = 125;

/*
	display link titles in status bar
	- if no title available, will use the name parameter
*/
ECMS_status_display = true;

/*
	repeat links on image/text
	- adds expand link on menus without their own links
	- adds link on bullet points
*/
ECMS_repeat_links = true;

/*
	collapse all other open menu branches when expanding a new branch
	values:	'menu' (collapse only within this menu)
			'all' (collapse all other menus as well)
*/
ECMS_collapse_on_expand = true;

/*
	automatically expand when the mouse is over a menu element
	delay time is in milliseconds (1000ms is 1 second)
	only works for menu folders which have a url specified
*/
ECMS_auto_expand = true;
ECMS_auto_expand_delay = 750;


/*
BUILD THE MENU
ECMS_add_item(level, name, url, target, expanded, title);
	- level:		level of the item (0 is a top level menu choice, 1 under that, 2 under that)
	- name:			text displayed for the item (HTML markup allowed)
	- url:			link for this item
	- target:		target frame for link
	- expanded:		true/false (initial expanded?  false is default)
	- title:		title for link (often appears as a tooltip on the link)
*/

// help (example menu)

// help (example menu)

ECMS_add_item(0, '1. Introduction', '01_01.htm');
ECMS_add_item(1, '1.1 Message from the CEO', '01_01.htm');
ECMS_add_item(1, '1.2 Strategy and Analysis', '01_02.htm');
ECMS_add_item(1, '1.3 Report Parameters', '01_03.htm');

ECMS_add_item(0, '2. Company Profile', '02_00.htm');
ECMS_add_item(1, '2.1 Generation', '02_01.htm');
ECMS_add_item(1, '2.2 Transmission', '02_02.htm');
ECMS_add_item(1, '2.3 Distribution', '02_03.htm');
ECMS_add_item(1, '2.4 Telecommunications', '02_04.htm');
ECMS_add_item(1, '2.5 Corporate Partnerships', '02_05.htm');
ECMS_add_item(1, '2.6 Products', '02_06.htm');
ECMS_add_item(1, '2.7 Copel in Figures', '02_07.htm');

ECMS_add_item(0, '3. Main Events', '03_01.htm');
ECMS_add_item(1, '3.1 Regulatory Scenario of the Power Sector', '03_01.htm');
ECMS_add_item(1, '3.2 Capital Raising', '03_02.htm');
ECMS_add_item(1, '3.3 Sustainable Energy', '03_03.htm');
ECMS_add_item(1, '3.4 Promoting the Kyoto Protocol', '03_04.htm');
ECMS_add_item(1, '3.5 Main Certifications and Awards', '03_05.htm');

ECMS_add_item(0, '4. Corporate Governance', '04_00.htm');
ECMS_add_item(1, '4.1 Corporate Governance Structure and Good Practices', '04_01.htm');
ECMS_add_item(1, '4.2 Strategic Reference Framework', '04_02.htm');
ECMS_add_item(1, '4.3 Capital Expenditures Program', '04_03.htm');
ECMS_add_item(1, '4.4 Research and Development Program', '04_04.htm');
ECMS_add_item(1, '4.5 Relations with Shareholders', '04_05.htm');
ECMS_add_item(1, '4.6 Audits', '04_06.htm');
ECMS_add_item(1, '4.7 Risk Management', '04_07.htm');
ECMS_add_item(1, '4.8 Information Technology', '04_08.htm');
ECMS_add_item(1, '4.9 Engagement and Dialog', '04_09.htm');

ECMS_add_item(0, '5. Operational Performance', '05_01.htm');
ECMS_add_item(1, '5.1 Power Market', '05_01.htm');
ECMS_add_item(1, '5.2 Rates and Discount Policy', '05_02.htm');
ECMS_add_item(1, '5.3 Overdue Bills', '05_03.htm');
ECMS_add_item(1, '5.4 Power Supply Quality', '05_04.htm');
ECMS_add_item(1, '5.5 Average Waiting Time', '05_05.htm');
ECMS_add_item(1, '5.6 Losses', '05_06.htm');
ECMS_add_item(1, '5.7 Energy Flowchart (in MWh)', '05_07.htm');

ECMS_add_item(0, '6. Economic and Financial Performance', '06_01.htm');
ECMS_add_item(1, '6.1 Net Operating Revenues', '06_01.htm');
ECMS_add_item(1, '6.2 Operating Expenses', '06_02.htm');
ECMS_add_item(1, '6.3 EBITDA', '06_03.htm');
ECMS_add_item(1, '6.4 Financial Income (Losses)', '06_04.htm');
ECMS_add_item(1, '6.5 Indebtedness', '06_05.htm');
ECMS_add_item(1, '6.6 Net Income', '06_06.htm');
ECMS_add_item(1, '6.7 Cash Flows', '06_07.htm');
ECMS_add_item(1, '6.8 Added Value', '06_08.htm');
ECMS_add_item(1, '6.9 Stock Performance', '06_09.htm');
ECMS_add_item(1, '6.10 Economic Value Added - EVA', '06_10.htm');

ECMS_add_item(0, '7. Environmental Performance', '07_00.htm');
ECMS_add_item(1, '7.1 Materials', '07_01.htm');
ECMS_add_item(1, '7.2 Power', '07_02.htm');
ECMS_add_item(1, '7.3 Water', '07_03.htm');
ECMS_add_item(1, '7.4 Biodiversity', '07_04.htm');
ECMS_add_item(1, '7.5 Emissions, Effluents, and Waste', '07_05.htm');
ECMS_add_item(1, '7.6 Products and Services', '07_06.htm');
ECMS_add_item(1, '7.7 Compliance with Legal Requirements', '07_07.htm');
ECMS_add_item(1, '7.8 Transportation', '07_08.htm');
ECMS_add_item(1, '7.9 Indian Rights', '07_09.htm');

ECMS_add_item(0, '8. Social Performance', '08_01.htm');
ECMS_add_item(1, '8.1 Incorporation of <br>the Principles of the Global Compact', '08_01.htm');
ECMS_add_item(1, '8.2 Support to Public Policies and Management Improvement', '08_02.htm');
ECMS_add_item(1, '8.3 Social Projects and Initiatives', '08_03.htm');
ECMS_add_item(1, '8.4 Workforce Management', '08_04.htm');
ECMS_add_item(1, '8.5 Customer Relations Management', '08_05.htm');
ECMS_add_item(1, '8.6 Supplier Relations Management', '08_06.htm');
ECMS_add_item(1, '8.7 Social Balance Sheet', '08_07.htm');

ECMS_add_item(0, '9. GRI Content and Correlation Index', '00_matriz.htm');

ECMS_add_item(0, '10. Thanks', '10_01.htm');
ECMS_add_item(1, '10.1 A Word of Thanks', '10_01.htm');
ECMS_add_item(1, '10.2 Composition of Governance Groups', '10_02.htm');

ECMS_add_item(0, '11. Financial Statements', '11_01.htm');
ECMS_add_item(1, '11.1 Balance Sheet - Assets', '11_01.htm');
ECMS_add_item(1, '11.2 Balance Sheet – Liabilities', '11_02.htm');
ECMS_add_item(1, '11.3 Statement of Income', '11_03.htm');
ECMS_add_item(1, '11.4 Statement of Changes in Shareholders’ Equity', '11_04.htm');
ECMS_add_item(1, '11.5 Statement of Changes in Financial Position', '11_05.htm');

ECMS_add_item(0, '12. Notes to The Financial Statements', '12_01.htm');

ECMS_add_item(0, '13. Annex', '13_01.htm');
ECMS_add_item(1, '13.1 Statement of Cash Flows', '13_01.htm');
ECMS_add_item(1, '13.2 Statement of Added Value', '13_02.htm');

ECMS_add_item(0, '14. Report by The Independent Auditors', '14_00.htm');

ECMS_add_item(0, '15. Report by The Audit Committee', '15_00.htm');

ECMS_add_item(0, '16. Report by The Fiscal Council', '16_00.htm');

ECMS_end_menu();

// ECMS_collapse_all();

