

function submenu_position(){
	var asd = setInterval("_position()", 50);
}

function _position(){
	var p, x; 
	p = document.getElementById("anhor");
	x = p.offsetLeft;
	while((p=p.offsetParent)!=null){
		x += p.offsetLeft;
	}
	document.getElementById("sub_menu").style.left = x - 30;
}


function submenu_position2(){
	var asd = setInterval("_position2()", 50);
}

function _position2(){
	var p, x; 
	p = document.getElementById("anhor2");
	x = p.offsetLeft;
	while((p=p.offsetParent)!=null){
		x += p.offsetLeft;
	}
	document.getElementById("sub_menu2").style.left = x - 30;
}


function submenu_position3(){
	var asd = setInterval("_position3()", 50);
}

function _position3(){
	var p, x; 
	p = document.getElementById("anhor3");
	x = p.offsetLeft;
	while((p=p.offsetParent)!=null){
		x += p.offsetLeft;
	}
	document.getElementById("sub_menu3").style.left = x - 30;
}



/*feedback*/







