$(document).ready(function(){
                           
    // This initialises carousels on the container elements specified, in this case, carousel1. http://www.professorcloud.com/mainsite/carousel.htm
    $("#carousel1").CloudCarousel(        
        {            
            xPos: 255,
            yPos: 30,
            speed: .2,
            reflHeight: 30,
            reflGap: 10,
            reflOpacity: .3,
            autoRotateDelay: 2500,
            autoRotate: $("right"), 
            minScale: .25,
            yRadius:80,
            bringToFront: true,
            titleBox: $("#title-text")          
        }
    );
});

