You just need to use the CSS float property.
It should be something like this:
[code:1:9c68a4497a]
#floatingImage {
float: left;
clear: right;
}
[/code:1:9c68a4497a]
The float property tells it to stay on the left side, and the clear property is telling the text to wrap around the right side.
Hope this helps.
