Absolute path?

I have a site that loads a .swf from another server.
The problem is that when loading things from that server into the swf it only works when I use absolute paths…

This wont work
on (release) {
loadMovie("/images/pic1.jpg", “_root.player”);
}

This works
on (release) {
loadMovie(“http://www.domain.com/images/pic1.jpg", “_root.player”);
}

Why is this happening?