
            // Set up Sliders
            // **************
            $(function(){

                $('#slider2').anythingSlider({
                    width               : 220,     
                    height              : null,
                    startStopped    : false,  // If autoPlay is on, this can force it to start stopped
                    //				width           : 390,
                    //                                height : 78,// Override the default CSS width
                    easing          : 'easeInOutBack',
					autoPlay            : true,
                    buildArrows     : false,
                    buildNavigation : false,
                    //				appendControlsTo : 'liensNav',
                    autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
					delay           : 9000,
					animationTime   : 1000,
                    resumeDelay     : 3000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
                    onSlideComplete : function(slider){
                        // alert('Welcome to Slide #' + slider.currentPage);
                    }
                });


            });

