function getPageCoords(el){
	var coords={x:0,y:0};
	while(el){
		coords.x+=el.offsetLeft;
		coords.y+=el.offsetTop;
		el=el.offsetParent;
	}
	return coords;
}
																										  
function showhb(){
	a=document.getElementById('hborder');
	a.style.visibility='visible';
}

function hidehb(){
	a=document.getElementById('hborder');
	a.style.visibility='hidden';
}

function setmenu(id){
	m=document.getElementById('mb'+id);
	p=document.getElementById('m'+id);
	c=getPageCoords(p);
	m.style.bottom=26;
	m.style.left=p.style.offsetLeft;
}

function mmenuover(id){
	m=document.getElementById('m'+id);
	m.style.backgroundColor='#000000';
	sm=document.getElementById('mb'+id);
	if(sm!=null)sm.style.visibility='visible';
}

function mmenuout(id){
	m=document.getElementById('m'+id);
	m.style.backgroundColor='';
	sm=document.getElementById('mb'+id);
	if(sm!=null)sm.style.visibility='hidden';
}

function mmenuover2(id){
	m=document.getElementById('m'+id);
	m.style.backgroundColor='#000000';
	m.style.color='#ffffff';
	sm=document.getElementById('mb'+id);
	if(sm!=null)sm.style.visibility='visible';
}

function mmenuout2(id){
	m=document.getElementById('m'+id);
	m.style.backgroundColor='#ffffff';
	m.style.color='#000000';
	sm=document.getElementById('mb'+id);
	if(sm!=null)sm.style.visibility='hidden';
}