function initd()
{
	if( recalc() )
		showElem( 'just' );
}

function recalc()
{
	var ph = findObject( 'jmph' );
	var jm = findObject( 'just' );
	if( !ph || !jm )
		return false;

	x = anchorPosX( ph );
	y = anchorPosY( ph );

	jm.style.top = y+'px';
	jm.style.left = (x-150)+'px';
	jm.style.width = (ph.offsetWidth+150)+'px';
	return true;
}

function resized()
{
	recalc();
}