$(document).ready(function(){
//This initialises carousels on the container elements specified, in this case, carousel1.
    if ($.browser.msie && parseInt($.browser.version) == '7' ) {
        $("#carousel").CloudCarousel({
            /*xPos: 300,*/
            yPos: 20,
            yRadius: 5,
            buttonLeft: $("#left-but"),
            buttonRight: $("#right-but"),
            altBox: $("#alt-text"),
            titleBox: $("#title-text"),
            bringToFront: true
        });
    } else {
	$("#carousel").CloudCarousel({
		
		xPos: 300,
		yPos: 20,
		yRadius: 5,
		buttonLeft: $("#left-but"),
		buttonRight: $("#right-but"),
		altBox: $("#alt-text"),
		titleBox: $("#title-text"),
		bringToFront: true
	    });
    };
});
