$(document).ready(function(){
        $.supersized({
                vertical_center         :   1,                //Vertically center background
                horizontal_center       :   1,                //Horizontally center background
                min_width                        :   0,                //Min width allowed (in pixels)
                min_height                        :   0,                //Min height allowed (in pixels)
                fit_portrait                 :   0,                //Portrait images will not exceed browser height
                fit_landscape                        :   0,                //Landscape images will not exceed browser width
                //Background image
        slides        :  [ { image : supersizedImage } ]
        });


        var li = $("#sudoslider ul").find('li').length;
        var sudoSlider = $("#sudoslider").sudoSlider({
                continuous:true,
                auto:true,
                numeric:true

        });

        $("#sudoslider ul").find('li').each(function(t){
                var url = $(this).children().attr('src');
                $('.controls li a span').eq(t).html('<img src="' + url + '" width="119" height="42" />');
        });

               


});
