function adornWithNote()
{
	var noteimg = document.getElementById('note');
	var coords = getCoordsWithinParent(this,document.getElementById('canvas'));
	var widthStyle = getCompdStyle(this,'width');
	var widthObj = numAndUnits(widthStyle);
	if(!widthObj || !widthObj.num || (widthObj.num == NaN))
	{
		width = guessWidth(this);
	}
	else 
	{
		width = widthObj.num;
	}

	var noteWidthStyle = getCompdStyle(noteimg,'width');
	var noteWidthObj   = numAndUnits(noteWidthStyle);
	notewidth = noteWidthObj.num ? noteWidthObj.num : 0;
	
	
	noteimg.style.left = (coords.x + Math.floor(width/2) - Math.floor(notewidth/2)) + 'px';
	noteimg.style.top  = '85px';
	noteimg.style.display = 'inline';
}

function removeAdorningNote()
{
	var noteimg = document.getElementById('note');
	noteimg.style.display = 'none';
}

noteAdornedElements = cssQuery('#nav a');

for(i = 0; i < noteAdornedElements.length; i++)
{
	noteAdornedElements[i].onmouseover = adornWithNote;
	noteAdornedElements[i].onmouseout = removeAdorningNote;
}

