function startList() {
		navRoot = document.getElementById("nav").getElementsByTagName('h1');
		for (i=0; i<navRoot.length; i++) {
			node = navRoot[i].parentNode;
			node.onmouseover=function() {
				this.className+=" over";
			}
			node.onmouseout=function() {
				this.className = '';

			}
		}
	}


function SendActCategory() {
	var cat = document.getElementById("cat");
	var uid = document.getElementById("page").value;
	var val = cat.options[cat.selectedIndex].value;
	var act = document.getElementById("act");
	var valact = act.options[act.selectedIndex].value;
	if (cat==0)
	{
		document.location.href = 'index.php?id='+uid+"&tx_ttnews[act]="+valact;
	} 
	else 
	{
		document.location.href = 'index.php?id='+uid+"&tx_ttnews[cat]="+val+"&tx_ttnews[act]="+valact;
	}
}

function SendCategory() {
	var cat = document.getElementById("cat");
	var uid = document.getElementById("page").value;
	var valL = document.getElementById("lang").value;
	var val = cat.options[cat.selectedIndex].value;
	if (cat==0)
	{
		document.location.href = '/index.php?id='+uid+"&L="+valL;
	} 
	else 
	{
		document.location.href = '/index.php?id='+uid+"&tx_ttnews[cat]="+val+"&L="+valL;
	}
}

function resize() {
	if (document.getElementById) {
		if (document.getElementById('content') && document.getElementById('menu_left') && document.getElementById('right') ) {
			var max = left = document.getElementById('menu_left').offsetHeight;
			var center = eval(document.getElementById('content').offsetHeight);
			var right = document.getElementById('right').offsetHeight;
			if (right > max) max = right;
			
			if (max>center) { document.getElementById('content').style.height = eval(max-26)+'px'; }
		}
	}
}
