function posX(e)
{
	return e.offsetLeft + (e.offsetParent != null && e.tagName != 'BODY' ? posX(e.offsetParent) : 0);
}

function posY(e)
{
	return e.offsetTop + (e.offsetParent != null && e.tagName != 'BODY' ? posY(e.offsetParent) : 0);
}

function show(id,e)
{
	document.getElementById(id).style.left = posX(e)+'px';
	document.getElementById(id).style.top = posY(e) + 19+'px';
	document.getElementById(id).style.display = "block";
}

function show1(id)
{
	document.getElementById(id).style.display="block";
}

function hide(id)
{
	document.getElementById(id).style.display="none";
}

function newMItem(a)
{
	document.write('<div class="submenu" id=item'+a+' onMouseOver="show1(\'item'+a+'\');" onMouseOut="hide(\'item'+a+'\');">');
}

function newSMItem(a,b,c,title)
{
	document.write('<div id="item'+a+'"><a href="'+b+'" title="'+title+'">'+c+'</a></div>');
}

function endMItem()
{
	document.write('</div>');
}

