Below are 3 Carousel objects created from the same Carousel class. Source code can be seen on Github.
var carouselA = new CAROUSEL.Carousel({
divId: 'carouselA',
jsonPath: './js/json/jsonImages.json'
});
var inputPortrait = { divId: 'carouselPortrait',
jsonPath: './js/json/jsonImagesLettered.json',
width: 300, height: 500,
tranTime: 3000,
backgroundColor: 'rgba(40, 200, 100, 0.55)'};
var carouselPortrait = new CAROUSEL.Carousel(inputPortrait);
var input = { divId: 'carouselWithFlickr',
flickrTag: 'dog',
backgroundColor: 'pink',
width: 500, height: 400,
download: 'false'};
var carouselWithFlickr = new CAROUSEL.Carousel(input);