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

                $('#slider1').anythingSlider({
                    width               : 275,     
                    height              : 280,
                    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           : 10000,
					animationTime   : 2000,
                    resumeDelay     : 2000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
                    onSlideComplete : function(slider){
                        // alert('Welcome to Slide #' + slider.currentPage);
                    }
                });


            });

