// top frame
loadEventBinding( window, initPage );
function initPage() {
	var elLink, windowTopMenu;
	// beállítjuk a <link rel="up"> title-nek megfelelő menübontot kiválasztottnak a top-frame-ben
	elLink = document.getElementById('pg-menupage-link');
	windowTopMenu = top.window.frames['top-frame'];
	if ( !elLink  || typeof windowTopMenu  == 'undefined' ) {
		throw 'nXError:: hibás menü konfiguráció :: menu!';
		return;
	}
	if ( windowTopMenu.setMenu )
		windowTopMenu.setMenu( elLink.title );
	else
		setTimeout( 'initPage()', 1000 )
}

