var body = false;

/*
 * do tejto funkcie vlozte vsetko co potrebujete inicializovat
 */
function init()
{
	// inicializacia konzoly potrebny krok ak neprebehne spravne stranka nebude fungovat
	if(!report_init('console', true))
	{
		return;
	}

	body = document.getElementById('body');
	if(! body)
	{
		report_error('init.js: Nepodarilo sa inicializovať element body.', false);
		return;
	}

	selftest_init();
	user_init();
	template_init();
	profile_init();

	menu_init();
}