function noveokno(adresa){
	window.open(adresa);
	return false;	
}


function nacteni(){
	listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');
	listMenu.animations[listMenu.animations.length] = FSMenu.animFade;
	listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;
	var arrow = null;
	if (document.createElement && document.documentElement){
		arrow = document.createElement('span');
		//arrow.appendChild(document.createTextNode('>'));
		//arrow.innerHTML = "&rarr;";
		arrow.className = 'subind';
	}
	listMenu.activateMenu("listMenuRoot", arrow);
}

window.onload = function(){
	nacteni();
}

