




var glbHomeURLinFullList="/index.html";
var secondaryNavigationList = "";
function buildTree() {
	
	
	
	

	
	var root = new TreeNode(null,"Home", "/index.html","active",0);  

	var tempNode1, tempNode2, tempNode3, tempNode4, tempNode5;

	tempNode1 = new TreeNode(root, "Home" , "/index.html","active",1 );
tempNode2 = new TreeNode(tempNode1, "Croatia" , "/hr/index.html","active",2);
tempNode3 = new TreeNode(tempNode2, "Official Rules" , "/hr/officialrules.html","active",3);
tempNode2 = new TreeNode(tempNode1, "Czech Republic " , "/cz/index.html","active",2);
tempNode3 = new TreeNode(tempNode2, "Official Rules" , "/cz/officialrules.html","active",3);


	
	return (root);
}


