All, Say I have the following divs:
<div id="rotate_container">
<div class="reviews" id="item1">This is item one</div>
<div class="reviews" id="item2">This is item two</div>
<div class="reviews" id="item3">This is item three</div>
</div>
Now what I'm trying to do is when the DOM is finished loading, I'm trying to fade out the text in the div with item1 an fade in the text in the div of item2 and then fade out item2 and fade in item3. After that's done, I'd like to go back and fade out item3 and fade back in item1 based on a setTimeout.
I was looking up .childen.next.fadein but couldn't find a good tutorial on how that worked.
Eventually I'd like to also add buttons that I can click which if your on item2 and you click previous, it would fade out item2 and then fade in item1 then after the setTimeout would go it would fade out item1 and then fade back in item2.
Basically, the idea I'm going for can be found here (right above the footer and the rotating comments): http://themes.winterbits.com/?theme=daydream
Any ideas on a good way to approach this would be greatly appreciate! Thanks in advance!
