Hey Nick,
I think that this is related to the SEF component that you use.
If you look at the source of your page you will see the <base> tag in the head
The base url for the page is:
<base href="http://h2oforlife.server298.com/index.php/resources" />
Now the component loads the text from the database and you have this:
<img width="100" height="100" style="float: left; margin-right: 3px;" alt="children-watching-driller" src="images/children-watching-driller.png">
the source is relative to the base tag. So, the browser is searching for the image in
http://h2oforlife.server298.com/index.php/resources/images....
Obviously this is wrong
Maybe when you add images in the editor use full path to them http://.../images...
Kind regards,
Daniel