Just made the JSFiddle for you
If my understanding is correct, this should do the job! Although I'm just using images in my divs, you can put any content you want in there.
HTML
<div class="imgloop">
<img src="http://hq.squidoo.com/files/2013/01/draft_lens14637921_1287867138penguin_posters.png"/>
</div>
<div class="imgloop">
<img src="http://www.openlettersmonthly.com/likefire/wp-content/uploads/2011/11/angry-penguin.jpg"/>
</div>
CSS
.imgloop {
width:250px;
height:250px;
display:none;
}
JQuery
(function() {
var imgloop = $(".imgloop");
var imgloopIndex = -1;
function showNextimgQuote() {
++imgloopIndex;
imgloop.eq(imgloopIndex % imgloop.length)
.fadeIn(1000)
.delay(4000)
.fadeOut(1000, showNextimgQuote);
}
showNextimgQuote();
})();
.fadeIn(1000)
Set how long it takes for the new content to fade in.
.delay(4000)
Set how long the content is visible to your viewers.
.fadeOut(1000, showNextimgQuote);
Set how long it takes for the content to fade out.
NOTE: These values are in miliseconds, 1000 is equal to one second.