[jQuery] Horizontal jcarousel images stack vertically until fully loaded

[jQuery] Horizontal jcarousel images stack vertically until fully loaded


It can be so brief you barely notice, or interminable if the jquery
carousel is on a page with other elements. The list of images display
as thumbs stacked vertically with bullets until everything is ready,
then the images snap to the horizontal carousel container.
My function:
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel();
});
A poster on Jan Sorgalla's jcarousel blog asked about the vertical
stacking and Jan said it only happens with images not loaded
dynamically and to use
Just add
#mycarousel {
display: none;
}
like its in the dynamic examples.
Not sure what he meant, would that be a style of a div id of
mycarousel or a function? Would window.onload or a timer help?