Jpegs wont load with Internet Explorer

Hi, I am currently programing my portfolio site and I have tried a couple different ways of loading Jpegs from an images folder into an empty movie clip. Both worked sucessfully everywhere but PCs, which I hear are kind of important. First I tried the basic LoadMovie (“jpegmane.jpg”, movieclip_mc) and that was unsuccessful. Next I tried the following code:

ink_mc.cacheAsBitmap = true;
mask_mc.cacheAsBitmap = true;
ink_mc.setMask(“mask_mc”);

var loader:MovieClipLoader = new MovieClipLoader();
var listener:Object = new Object();

listener.onLoadComplete = function(target:MovieClip) {
trace(“LOAD COMPLETE”);
target._parent.load_text._alpha = 0;
//target._parent.play();
}

listener.onLoadProgress = function(target:MovieClip, bL:Number, bT:Number) {
trace("PROGRESS: " + (bL / bT) * 100);
}

loader.addListener(listener);

print_btns.print1.onRelease = function() {
loader.loadClip(“images/print_philroy.jpg”, content_mc);
_root.ink_mc._alpha = 0;
_root.gotoAndStop(“print”);
}

I haven’t had any problems like this before with PCs. Any suggestions out there?

THanks in advance.

Brandon