Friends, I have to put some images in the marginal notes of a text. Unfortunately, I have some issues with the image alignment. Consider this minimum example:
\documentclass[oneside]{book}
\usepackage[T1]{fontenc}
\parskip 7.2pt
\usepackage{graphicx}
\usepackage{bookman}
\usepackage{lipsum}
\DeclareRobustCommand*\standup{%
\begin{flushright}
\includegraphics[scale=.15]{standup.pdf}%
\end{flushright}
}%
\begin{document}
\reversemarginpar
\noindent Hi there, this is my first line. No real meaning here.
\noindent\marginpar{\standup}Hello, this is a short line.
\noindent\lipsum[4]
\noindent\marginpar{\standup}This is probably another long line to be broken into two lines. Let's see if it happens again.
\noindent\lipsum[4]
\noindent\marginpar{\standup}There we go, this line is supposed to be broken into three lines, so I need to add lots of text here in order to achieve that. Let's see if it happens now.
\noindent\lipsum[4]
\noindent\marginpar{\standup}Now I want the text to be broken into four or more lines. How was your day? Mine was good, despite the fact these images don't want to be my friends. So how about now? Now I want the text to be broken into four or more lines.
\end{document}
The standup.pdf file (which is the proper image) can be downloaded here. The output is as follows:

The images are aligned with the baseline of the first line. I'd like to achieve the following alignment rule:
- If the paragraph has one line, align the center of the image with the center of that line.
- If the paragraph has two lines, align the center of the image in half the height of those two lines.
- If the paragraph has three or more lines, align the center of the image with the center of the second line.
I hope this image can visually clarify these rules:

I tried to manually hack their position using \vspace, but I had no success.
I wonder if someone could enlight me on this issue. I'm open to all ideas, this code was my first attempt. I'm also aware that these rules might be confusing or annoying to be defined, so even a manual adjustment is welcome. =)
=)– Paulo Cereda Jul 25 '11 at 18:22