FLVPlayback controls not displaying correct skin

This makes no sense. I recently skinned a FLVPlayback control for the Skin that shows up underneath the FLVPlayback component and upped it to the server as such:

http://www.charlestjones.com/new/images/swf/SkinUnderPlaySeekStop.swf

I changed it from the generic blue/aqua theme to a silver and black theme.

Problem is when I load in that component, I get the generic blue/aqua theme which makes no sense. Here's the page in question:

http://www.charlestjones.com/new/reel/index.html

and here's the AS3 code I'm using to call my components:

import fl.video.FLVPlayback;
var myVideo:FLVPlayback=new FLVPlayback();
myVideo.skin = "http://www.charlestjones.com/new/images/swf/SkinUnderPlaySeekStop.swf";
myVideo.source = "http://www.charlestjones.com/media/mp4/reel_2008.mp4";
myVideo.x = 10;
myVideo.y = 39;
myVideo.height = 292;
myVideo.width = 480;
addChild(myVideo);

So how can I get it to display the silver and black theme instead?