var index = 0;
//var images = ["/images/screenshots/brand.jpg", "/images/screenshots/revenue.jpg", "/images/screenshots/breaking.jpg"];
var images = ["/images/screenshots/revenue.jpg", "/images/screenshots/breaking.jpg"];
function rotate_images() {
    index = index + 1;
    $('#it_image').pause(3000).fadeOut(2000, function(){
        spot = document.getElementById("it_image").src = images[index];
        $('#it_image').pause(3000).fadeIn(2000, function() {
            //done
        });
    });
//    alert("the src is " + images[index]);
    if (index == images.length) {
        index = 0;
    }
    //wait(3000);
//
//    return 0;
}
