***Issue has been resolved****
You can view the slideshow here:
http://tinyurl.com/cg7mrm9
It appears fine at first, but after awhile - the slides start 'flickering' back and forth.
Here is the code:
Code:
<style>
.fadein { position:relative; width:990px; height:335px; }
.fadein img { position:absolute; left:0; top:0; }
</style>
<script>
$(function(){
$('.fadein img:gt(0)').hide();
setInterval(function(){
$('.fadein :first-child').fadeOut()
.next('img').fadeIn()
.end().appendTo('.fadein');},
4500);
});
</script>
<div id="content" style="background:#540000;">
<div id="homeFlash" style="background:#540000;">
<div class="fadein">
(image paths - removed)
</div>