function cloudCarouselInit($, el, width, options) {
	if (width.indexOf("%") != -1) {
		width = $(el).outerWidth();

		$(el).width(width);
		$(el + "_wrapper").width(width);

		if (!options["xPos"])
			options["xPos"] = Math.round(width / 2);
		
		if (!options["xRadius"])
			options["xRadius"] = Math.round(width / 2.3);
	}

	$(el).CloudCarousel(options);
}
