If else question

Hi
Im having a little problem with statement on my 1st frame, dont know if im just being a fool or what.

 Ive just finished a preloader for a website im just finishing for a client. I have some actions on the first frame

     if (getBytesLoaded()!=getBytesTotal()) {
     	gotoAndPlay(2);
     } else {
     	gotoAndStop(20);
     }
     // end if
     

Im trying to check if the movie has been loaded before. If so jump straight to it, if not play upto the frames where i have a preloader animation on it.Im using this on my MC whci rolls out over 100fr


     onClipEvent (enterFrame) {
     	gotoAndStop(int(_parent.getBytesLoaded()*100/_parent.getBytesTotal()));
     }
     
My explanation is probably not going to make much sence, here is my .fla.

[download_me_please](http://www.imbuez.co.uk/preload2.zip)

 Thanks in advance for looking/helping

ding/…