<!--//

// menu_items.js file

var MENU_ITEMS =[
	['&nbsp;Projekt', ,
		['&nbsp;A pályázat adatai','projekt.html'],
		['&nbsp;Fő tevékenységek','tevek.html'],
		['&nbsp;Várható eredmények','eredm.html'],
		['&nbsp;Táborok','tabor.html'],
		['&nbsp;Moduláris tananyag','modultananyag.html'],
		['&nbsp;Mentorálás','mentor.html'],
		['&nbsp;Továbbképzések','tovabbkepz.html'],
		['&nbsp;Versenyek','verseny.html'],
	],
	['&nbsp;Magunkról', ,
		['&nbsp;Vezetőség', 'vezet.html'],
		['&nbsp;Menedzsment', 'management.html'],
		['&nbsp;Koordinátorok', 'koord.html'],
		['&nbsp;Munkacsoportok', 'munkacs.html'],
	],
	["&nbsp;Tagiskolák", "tagiskolak.html",
		//["&nbsp;Raoul", "raoul.html"],
		//["&nbsp;Hetényi", "hetenyi.html"],
		//["&nbsp;Bókay", "hetenyi.html"],
		//["&nbsp;Semmelweis", "hetenyi.html"],
		//["&nbsp;Kanizsai", "hetenyi.html"],
		//["&nbsp;Hetényi", "hetenyi.html"],
	],
	["&nbsp;Tananyagfejlesztés", "tananyag.html"],
	["&nbsp;E-tananyag", "elearning.html"],
	["&nbsp;Rendezvények", ,
	    ['&nbsp;Nyílt rendezvények', ,
			['&nbsp;Nyitókonferencia','rendez.html'],
            ["&nbsp;Konferencia '09.10.02.",'konf091002.html'],
			["&nbsp;Konferencia '10.06.30.",'konf100630.html'],
		    
			//['&nbsp;Versenyeredmények','versenyeredm.html'],
		],
		['&nbsp;Megbeszélések','megbesz.html'],
	],
	["&nbsp;Közbeszerzés", "kozbeszerz.html"],
	["&nbsp;Elérhetőségek", "eler.html"],
	["&nbsp;Linkek", "link.html"],
	["&nbsp;Képgaléria",  "galeria.html"],
	["&nbsp;Videók", "video.html"],
	["&nbsp;Letöltések", "letolt.html"],
	["&nbsp;Archívum", "archiv.html"],
	["&nbsp;Honlaptérkép", "honlapterkep.html"],
];

/* --- geometry and timing of the menu --- */
var MENU_POS = new Array();

	// item sizes for different levels of menu
	MENU_POS['height']     = [22, 22, 22];
	MENU_POS['width']      = [140, 150, 160];

	// menu block offset from the origin:
	//  for root level origin is upper left corner of the page
	//  for other levels origin is upper left corner of parent item
	MENU_POS['block_top']  = [190, 0, 1];
	MENU_POS['block_left'] = [5, 110, 120];

	// offsets between items of the same level
	MENU_POS['top']        = [23, 23, 23];
	MENU_POS['left']       = [0, 0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS['hide_delay'] = [200, 200, 200];



/* --- dynamic menu styles ---
note: you can add as many style properties as you wish but be not all browsers
are able to render them correctly. The only relatively safe properties are
'color' and 'background'.
*/

var MENU_STYLES = new Array();


	MENU_STYLES['onmouseout'] = [
		'color', ['#ffffcc', '#ffffcc', '#ffffcc'], 
		'background', ['#1d477b', '#6699CC', '#1d477b'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'bold'],
		'margin', ['5px','5px','5px'],
	],
	// state when item has mouse over it
	MENU_STYLES['onmouseover'] = [
		'color', ['#FFFFFF', '#000000', '#000000'], 
		'background', ['#5AA7E5', '#5AE55A', '#5AE55A'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'bold'],
	],
	// state when mouse button has been pressed on the item
	MENU_STYLES['onmousedown'] = [
		'color', ['#FFFFFF', '#000000', '#000000'], 
		'background', ['#5AA7E5', '#5AE55A', '#5AE55A'],
		'textDecoration', ['nonee', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'bold'],
	]



new menu (MENU_ITEMS, MENU_POS, MENU_STYLES);
window.focus();

var MENU_ITEMS2 =[
	['&nbsp;Határidők'],
	
	//['&nbsp;2009. 09. 15.', ,
	//   ['&nbsp;Kérdőív','akt.html'],
	//],
	//['&nbsp;2009. 04. 22.', ,
	//	['&nbsp;Ajánlattétel', 'tovabbkepz.html'],
	//],
];

var MENU_POS2 = new Array();

	// item sizes for different levels of menu
	MENU_POS2['height']     = [20, 20];
	MENU_POS2['width']      = [130, 100];

	// menu block offset from the origin:
	//  for root level origin is upper left corner of the page
	//  for other levels origin is upper left corner of parent item
	MENU_POS2['block_top']  = [520, 0];
	MENU_POS2['block_left'] = [5, 110];

	// offsets between items of the same level
	MENU_POS2['top']        = [20, 20];
	MENU_POS2['left']       = [0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS2['hide_delay'] = [200, 200];

var MENU_STYLES2 = new Array();


	MENU_STYLES2['onmouseout'] = [
		'color', ['red', 'red', '#000000'], 
		'background', ['#1d477b', '#6699CC', '#0000CC'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'normal'],
		'margin', ['5px','5px','5px'],
	],
	// state when item has mouse over it
	MENU_STYLES2['onmouseover'] = [
		'color', ['#FFFFCC', '#FFFFCC', '#000000'], 
		'background', ['#5AA7E5', '#5AA7E5', '#E55A5A'],
		'textDecoration', ['none', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'normal'],
	],
	// state when mouse button has been pressed on the item
	MENU_STYLES2['onmousedown'] = [
		'color', ['#FFCC33', '#000000', '#000000'], 
		'background', ['#5AA7E5', '#FFFFCC', '#E55A5A'],
		'textDecoration', ['nonee', 'none', 'none'],
		'fontWeight', ['bold', 'bold', 'normal'],
	]

new menu (MENU_ITEMS2, MENU_POS2, MENU_STYLES2);
window.focus();
//-->