I would do it the other way - bring the title in the post content too.
You have this line in your loop:
PHP Code:
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
1. Give it a display:none; - with this you can see it in your admin area but not on the blog.
PHP Code:
<h2 style="display:none;"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link o <?php the_title(); ?>"><?php the_title(); ?></a></h2>
2. Install
Exec-PHP, so you can write code in your posts
3. Write your post: thumbnail (style="float:left; margin:14px 1em 4px 0; padding:0px;") and <div>
PHP Code:
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p>YOUR TEXT<p></div><br clear="left" />
Hope this makes sense to you.