﻿var images = new Array('/img/banner/bred1_100x246.jpg', '/img/banner/bred2_100x246.jpg', '/img/banner/bred3_100x246.jpg', '/img/banner/bred4_100x246.jpg', '/img/banner/bred5_100x246.jpg', '/img/banner/bred6_100x246.jpg');
var index = 1;

function rotateImage() {
    $('#MRbanner').fadeOut('slow', function() {
        $(this).attr('src', images[index]);

        $(this).fadeIn('slow', function() {
            if (index == images.length - 1) {
                index = 0;
            }
            else {
                index++;
            }
        });
    });
}

$(document).ready(function() {
    setInterval(rotateImage, 5000);
});
