         $(function() {
            $('#slider1').nivoSlider();
            $('#slider2').nivoSlider({
               effect:'random', //Specify sets like: 'fold,fade,sliceDown'
               slices:50,
               startSlide:0, //Set starting Slide (0 index)
               directionNav:true, //Next & Prev
               animSpeed:500, //Slide transition speed
               pauseTime:6000,
               directionNavHide:true, //Only show on hover
               controlNav:true, //1,2,3...
               keyboardNav:true, //Use left & right arrows
               pauseOnHover:true, //Stop animation while hovering
               manualAdvance:false, //Force manual transitions
               captionOpacity:0.6, //Universal caption opacity
            });
            $('#slider3').nivoSlider({
               controlNavThumbs:true,
               controlNavThumbsSearch: '.jpg', //Replace this with...
               controlNavThumbsReplace: '_t.jpg', //...this in thumb Image src
               beforeChange: function(){$("#slider3_status").html("スライド切替前");},
               afterChange: function(){$("#slider3_status").html("スライド切替後");},
               slideshowEnd: function(){$("#slider3_status").html("スライド終了");} //Triggers after all slides have been shown
            });
         });
