$(document).ready(function() {
    $("#carouselStatic").hide();
    $("#carousel").show().CloudCarousel({
        xPos: $("#carousel").width() / 2,
        yPos: 90,
        bringToFront: true,
        speed: 0.1,
        autoRotate: "left",
        autoRotateDelay: 2000,
        autoRotateImmediately: true,
        allowAutoRotateResume: false
    });
	$("img.cloudcarousel").click(function() {
		$("#" + $(this).attr("gift")).show().siblings().hide();
	});
});

