function theRotator() {
$('div.rotator2 ul li').css({opacity: 0.0});
$('div.rotator2 ul li:first').css({opacity: 1.0});
setInterval('rotate()',4000);
}
function rotate() {
var current = ($('div.rotator2 ul li.show')? $('div.rotator2 ul li.show') : $('div.rotator2 ul li:first'));
if ( current.length == 0 ) current = $('div.rotator2 ul li:first');
var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div.rotator2 ul li:first') :current.next()) : $('div.rotator2 ul li:first'));
next.css({opacity: 0.0})
.addClass('show')
.animate({opacity: 1.0}, 1000);
current.animate({opacity: 0.0}, 1000)
.removeClass('show');
};
$(document).ready(function() {
theRotator();
$('div.rotator2').fadeIn(1000);
$('div.rotator2 ul li').fadeIn(1000); // tweek for IE
});
Team Riders
Pat Blenkle, Mardy Ying, Sean Tiernan, Matt Whipple and Nordy Ying