jQuery(window).load(function() {    

        var thewindow        = $(".contenitoreimmagine"),
            $bg              = $(".immagine"),
            aspectRatio      = $bg.width() / $bg.height();

        function resizeBg() {

                if ( (thewindow.width() / thewindow.height()) < aspectRatio ) {
                    $bg
                        .removeClass()
                        .addClass('immaginealtezza');
                } else {
                    $bg
                        .removeClass()
                        .addClass('immaginelarghezza');
                }

        }

        thewindow.resize(function() {
                resizeBg();
        }).trigger("resize");

});





jQuery(document).ready(function(){


jQuery.backstretch("http://www.madamebutterfly.it/images/bg.jpg");


jQuery('.banner').cycle({ 
    fx:     'fade', 
    timeout: 8000, 
    delay:  -2000
});



});
