[F8] External Imgs loaded into movie clip appear big before scaling!

Hi again. Another Q about my site…
http://www.anman.net/tpi/tpi_flash_site2.html

Click on one of the menu options - “corporatecommunications” or “events&entertainment

I fixed the earlier progressBar problem, but when you click on an image thumbnail to load it, it pops up regular size for maybe 1/30th of a second before being scaled to the proper size.

Here’s my code:


 
// set a variable to hold image name
var imageNow:String;
 
// scale empty movie clip that will hold the image
function iHoldSize() {
 iHold._width = 350;
 iHold._height = 263;
}
 
/* Each button looks like this. Checks the imageNow variable to see if it should load the
image. Then it scales the iHold movie clip image holder. Then it changes the progress bar's
properties. Then it loads the image. Then it sets the imageNow variable to the 
current image's name*/
 
auPicGrid.tempR.onRelease = function() {
 if (imageNow != "images/netP8290134.jpg") {
  iHoldSize();
  pBar.mode = "polled";
  pBar._visible = true;
  iHold.loadMovie("images/netP8290134.jpg");
  imageNow = "images/netP8290134.jpg";
 }
};
 
// the progress bar stuff. Most likely unimportant to this Q.
pBarListener = new Object();
pBarListener = function (eventObject) {
 pBar.mode = "manual";
 pBar.setProgress(0, 100);
 pBar._visible = false;
 iHoldSize();
};
pBar.addEventListener("complete", pBarListener);
 
 

Thanks for checking it out!