function anythingSlider()
{
	 $('#slider1').anythingSlider({
     	width                 : 824,      // Override the default CSS width
     	  height              : 219,      // Override the default CSS height
     	  resizeContents      : false,      // If true, solitary images/objects in the panel will expand to fit the viewport
     	  tooltipClass        : 'tooltip', // Class added to navigation &amp; start/stop button (text copied to title if it is hidden by a negative text indent)
     	  theme               : 'theme-minimalist-round', // Theme name
     	  themeDirectory      : 'css/theme-{themeName}.css', // Theme directory &amp; filename {themeName} is replaced by the theme value above

     	  // Navigation
     	  startPanel          : 1,         // This sets the initial panel
     	  hashTags            : true,      // Should links change the hashtag in the URL?
     	  buildArrows         : false,      // If true, builds the forwards and backwards buttons
     	  toggleArrows        : false,     // if true, side navigation arrows will slide out on hovering &amp; hide @ other times
     	  buildNavigation     : true,      // If true, builds a list of anchor links to link to each panel
     	  toggleControls      : false,     // if true, slide in controls (navigation + play/stop button) on hover and slide change, hide @ other times
     	  navigationFormatter : null,      // Details at the top of the file on this use (advanced use)
     	  forwardText         : "&amp;raquo;", // Link text used to move the slider forward (hidden by CSS, replaced with arrow image)
     	  backText            : "&amp;laquo;", // Link text used to move the slider back (hidden by CSS, replace with arrow image)

     	  // Slideshow options
     	  autoPlay            : true,      // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
     	  startStopped        : false,     // If autoPlay is on, this can force it to start stopped
     	  pauseOnHover        : true,      // If true &amp; the slideshow is active, the slideshow will pause on hover
     	  resumeOnVideoEnd    : true,      // If true &amp; the slideshow is active &amp; a youtube video is playing, it will pause the autoplay until the video has completed
     	  stopAtEnd           : false,     // If true &amp; the slideshow is active, the slideshow will stop on the last page
     	  playRtl             : false,     // If true, the slideshow will move right-to-left
     	  startText           : "Start",   // Start button text
     	  stopText            : "Stop",    // Stop button text
     	  delay               : 3000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
     	  animationTime       : 600,       // How long the slideshow transition takes (in milliseconds)
     	  easing              : "swing",   // Anything other than "linear" or "swing" requires the easing plugin

     	  // Callbacks
     	  onShowStart         : null,      // Callback on slideshow start
     	  onShowStop          : null,      // Callback after slideshow stops
     	  onShowPause         : null,      // Callback when slideshow pauses
     	  onShowUnpause       : null,      // Callback when slideshow unpauses - may not trigger properly if user clicks on any controls
     	  onSlideInit         : null,      // Callback when slide initiates, before control animation
     	  onSlideBegin        : null,      // Callback before slide animates
     	  onSlideComplete     : null,      // Callback when slide completes

     	  // Interactivity
     	  clickArrows         : "click",         // Event used to activate arrow functionality (e.g. "click" or "mouseenter")
     	  clickControls       : "click focusin", // Events used to activate navigation control functionality
     	  clickSlideshow      : "click",         // Event used to activate slideshow play/stop button

     	  // Misc options
     	  addWmodeToObject    : "opaque", // If your slider has an embedded object, the script will automatically add a wmode parameter with this setting, if swfobject.js is active
     	  maxOverallWidth     : 32766     // Max width (in pixels) of combined sliders (side-to-side); set to 32766 to prevent problems with Opera

		});

}
