
$(function()
{
    var index = 0;

    setInterval(function()
    {
        if ((index + 1) < $('#splash-image li').length) { index += 1;}
        else { index = 0; }
        
        changeBanner(index);
    }, 10000);
});

function changeBanner( index )
{
    $('#splash-image li.active').fadeOut(null, function()
    {
        $(this).removeClass('active');
        $('#splash-image li:eq(' + index + ')').fadeIn(null, function()
        {
            $(this).addClass('active');
        });
    });
    
    $('#splash-text li.active').fadeOut(null, function()
    {
        $(this).removeClass('active');
        $('#splash-text li:eq(' + index + ')').fadeIn(null, function()
        {
            $(this).addClass('active');
        });
    });    
}
