var slider2 = ['', '', '', '', ''];
              function formatText(index, panel) {
                     return slider2[index - 1];
              }

              $(function () {

                     

                     $('#slider2').anythingSlider({
                            width               : 480,       // if resizeContent is false, this is the default width if panel size is not defined
                            height              : 150,       // if resizeContent is false, this is the default height if panel size is not defined
                            resizeContents      : false,     // If true, solitary images/objects in the panel will expand to fit the viewport
                            autoPlay            : true,     // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
                            navigationFormatter : formatText // Format navigation labels with text
                     })

                     $("#slide-jump").click(function(){
                            $('#slider2').anythingSlider(4);
                            return false;
                     });

              });

