positionIt = function() {
	if( document.getElementById ) {
		var div = document.getElementById("white-area");
		var bounds = getBounds(div);
		var img = document.getElementById("side-note");
		img.style.top = bounds.top + 30 + "px";
		img.style.left = bounds.left - 30 + "px";
		img.style.display = "inline";
	}
};

addEvent(window, 'load', positionIt);
addEvent(window, 'resize', positionIt);