﻿$(document).ready(function () {

    // This initialises carousels on the container elements specified, in this case, carousel1.
    $("#div_carousel").CloudCarousel(
		{
		    xPos: 300,
		    yPos: 10,
		    yRadius: 10,
            xRadius: 365,
            bringToFront: true
		}
	);

});

function loadText(id) {

    var img = "";

    switch (id) {

        case "img1001":
            img = "url('dm-hater.jpg')";
            break;

        case "img1002":
            img = "url('dm-dogblood.jpg')";
            break;

        case "img1003":
            img = "url('dm-themorus.jpg')";
            break;

    };

    $("#div_back").fadeOut("100", function () {
        document.getElementById("div_back").style.backgroundImage = img;
    });
    $("#div_back").fadeIn("100");

}
