$(document).ready(function(){
  // This initialises carousels on the container elements specified, in this case, carousel1.
  $("#carrossel").CloudCarousel(		
    {
      minScale: 0.25,
      xPos: 300,
      yPos: 70,
      xRadius: 200,
      yRadius: -50,
      reflHeight: 40,
      reflGap: 1,
      reflOpacity: 0.7,
      FPS: 30,
      autoRotate: 'right',
      autoRotateDelay: 3000,
      speed: 0.2,
      buttonLeft: $("#left-but"),
      buttonRight: $("#right-but"),
      altBox: $("#alt-text"),
      titleBox: $("#title-text"),
      mouseWheel:false
    }
  );
});

