You want to start with:
getClass().getResourceAsStream("MyPicture.gif");
That will read your given filename (from your JAR) as an InputStream. You can read it into an Image or whatever from there. I've only done it with a text-file, so I don't know the particulars about loading an image.
Michael Bishop