// JavaScript Document
function shownav(navid) {
	var divbox = navid.getElementsByTagName('div')[0];
	var table = divbox.getElementsByTagName('table')[0];
	var a = navid.getElementsByTagName('a')[0];
	var color = navid.style.color;
	var left = navid.offsetLeft;
	var width = navid.offsetWidth;
	
	if (navid.offsetTop < '20') {
		var top = '32px';
	} else {
		var top = '59px';
	}
	
	navid.style.backgroundColor = color;
	a.style.color = '#ffffff';
	divbox.style.display ='block';
	divbox.style.zIndex = '92';
	divbox.style.backgroundColor = color;
	//divbox.style.left = '0px';
	//divbox.style.width = '980px';
	divbox.style.left = left+'px';
	divbox.style.minWidth = width+'px';
	divbox.style.top = top;
	divbox.style.position = 'absolute';
	
	table.style.width = divbox.style.minWidth;
}
function hidenav(navid) {
	var divbox = navid.getElementsByTagName('div')[0];
	var color = navid.style.backgroundColor;
	var a = navid.getElementsByTagName('a')[0];
	a.style.color = color;
	navid.style.backgroundColor = '#ffffff';
	divbox.style.display = 'none';
	divbox.style.zIndex = '91';
}
function info_show(id) {
	document.getElementById("div-1").style.display = 'none';
	document.getElementById("td-1").style.backgroundImage = 'url(templates/elektro2008/img/tab-bottom.png)';
	document.getElementById("div-2").style.display = 'none';
	document.getElementById("td-2").style.backgroundImage = 'url(templates/elektro2008/img/tab-bottom.png)';
	document.getElementById("div-3").style.display = 'none';
	document.getElementById("td-3").style.backgroundImage = 'url(templates/elektro2008/img/tab-bottom.png)';
	
	document.getElementById("div-"+id).style.display = 'block';
	document.getElementById("td-"+id).style.backgroundImage = 'url(templates/elektro2008/img/'+id+'.png)';
}

