//DROPDOWN MENU
function show_dropdown(node){
	
	//Hämtar absolut vänster-position för aktuellt lager
	xPos = document.getElementById('idTopMenu_'+node).offsetLeft;
	tempEl = document.getElementById('idTopMenu_'+node).offsetParent;
	while (tempEl != null) {
		xPos += tempEl.offsetLeft;
		tempEl = tempEl.offsetParent;
	}
	
	//Hämtar absolut topp-position för aktuellt lager
	yPos = document.getElementById('idTopMenu_'+node).offsetTop;
	tempEl = document.getElementById('idTopMenu_'+node).offsetParent;
	while (tempEl != null) {
		yPos += tempEl.offsetTop;
		tempEl = tempEl.offsetParent;
	}
	
	//Justerar dropdown-lagrets position (i förhållande till länken)
	yPos = yPos+14+"px";
	xPos = xPos+0+"px";
	
	//Bestämmer dropdown-lagrets position
	document.getElementById("idDropdownMenu_"+node).style.left = xPos;
	document.getElementById("idDropdownMenu_"+node).style.top = yPos;
	
	//Visar dropdown-lager
	document.getElementById("idDropdownMenu_"+node).style.display = "block";
	
}
function hide_dropdown(node){
	//Gömmer dropdown-lager
	document.getElementById("idDropdownMenu_"+node).style.display = "none";
}
