$(document).ready(function(){
    // Set up Sliders
    $(function(){
        $("#slider1, #slider2").anythingSlider({
            // Appearance
            width               : 328,      // Override the default CSS width
            height              : 104,      // Override the default CSS height
            resizeContents      : false,      // If true, solitary images/objects in the panel will expand to fit the viewport
			showMultiple        : 2,     // Set this value to a number and it will show that many slides at once

            // Navigation
            startPanel          : 1,         // This sets the initial panel
            hashTags            : false,      // Should links change the hashtag in the URL?
            buildArrows         : false,      // If true, builds the forwards and backwards buttons
            buildNavigation     : false,      // If true, builds a list of anchor links to link to each panel
            navigationFormatter : null,      // Details at the top of the file on this use (advanced use)
            //forwardText         : "&raquo;", // Link text used to move the slider forward (hidden by CSS, replaced with arrow image)
            //backText            : "&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 & the slideshow is active, the slideshow will pause on hover
            stopAtEnd           : false,     // If true & the slideshow is active, the slideshow will stop on the last page
            playRtl             : false,     // If true, the slideshow will move right-to-left
            delay               : 4000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
            animationTime       : 500,       // How long the slideshow transition takes (in milliseconds)
            easing              : "swing",    // Anything other than "linear" or "swing" requires the easing plugin
        
            //onInitialized       : slidestart,      // Callback when the plugin finished initializing
            //onSlideInit         : sliderslideinit,      // Callback when slide initiates, before control animation
            //onSlideComplete     : sliderslidecomplete   // Callback when slide completes
        });
    });
});

