
$(document).ready(function () {

    $(".bgfoto ul li").each(function (i, item) { $(item).show(); });

    // Initialize the carousel
    initCarousel();

    // Check whether the calendar's text is too long
    $(".city").each(function () {

        if ($(this).width() > 125) {

            // Strip the text
            if ($(this).text().length > 20) {

                $(this).text($(this).text().substring(0, 17));
                $(this).text($(this).text() + "...");
            }
        }
    });


});


var texts = new Array();

function initCarousel() {

    $(".bgfoto").jcarousel({
		start: Math.floor(Math.random() * ($(".bgfoto ul li").length + 1)),
        scroll: 1,
		visible: 1,
 
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
}

