thanks for the suggestion. i did use a setTimeout(), but i'm now noticing that right when the slide container is initialized by this method, there's a quick flash of the content (just the first image in the container). after this quick flash, the slide container then fades in correctly.
i've tried to initially hide the content to prevent this, but does anyone have any suggestions?
here is, i think, the pertinent code:
$(document).ready(function() {
var t=setTimeout("xSlides()",11000);
});
function xSlides() {
$('#slideshow img:first').fadeIn(8000);
$('#slideshow').cycle({fx: 'fade', speed:2500, timeout: 10000 });
}
</script>
<style type="text/css">#slideshow {height: 120px; width: 120px; margin-top:25px; margin-left:30px; z-index:50; position:absolute; opacity:0.8; overflow:hidden; } #slideshow img { display: none; }
<body>
<div id="slideshow">
<!--all the images are listed here--!>
</div>