The way the slide show works is that once the document has been parsed, the slide show's dimensions are set as specified. That accounts for the collapsed effect.
Since there is no height specified for the containing td, it has to wait until after document parse to 'grow' to its display height.
You could set the height for the td, but we may as well kill two birds with one stone. The black is the default background color for the show. This is only important for .jpg in IE, and then only under certain circumstances, and also for images with transparent sections. For this last though, it's only important that it have some background other than transparent.
To these ends we can add these rules to your stylesheet:
Code:
#fadeshow1 {
width: 769px;
height: 141px;
}
#fadeshow1, #fadeshow1 .gallerylayer {
background-color: white!important;
}
Make sure to use the keyword !important as shown, otherwise the background color will not override the scripted style of black.
Bookmarks