﻿
// (c) Cog-Wheel. Website www.cog-wheel.com, e-mail: info@cog-wheel.com

var useDropDownMenus = true;

if ( ( !supports_cbAddEventListener()            ) || 
     ( !document.getElementById                  ) ||
     ( window.location.href.search("/en/") >= 0  ) )
{
     useDropDownMenus = false;  // No English drop down menus as yet
}

function doOnLoad() {

	if ( useDropDownMenus ) initMenus();
	
//	if (document.getElementById('navSearchField')) {
//		searchField = document.getElementById('navSearchField');
//		searchField.focus();
//	}
	
	DocInfo.Init();
	//if ( startWithDocInfo ) DocInfo.Show();

}

function doOnResize() {
	if ( useDropDownMenus ) setMenuListPositions();
}

onload   = new Function( 'doOnLoad();' );	
onresize = new Function( 'doOnResize();' );
