$(document).ready(function(){
            
            // anchors (with permalinking) example 2
            $.wiggleSlide({
                sliderNav: '#navibox', // [ID OR CLASS] accepts any html element with an id.. "div" is recommended
                sliderClickLink: 'a', // [ELEMENT] accepts "a","li","div" html element, must be inside 'slider-nav', what you click on to slide
                hiddenContainer: '#mainconent', // [ID OR CLASS] accepts any html element with an id.. "div" is recommended
                sliderItemClassName: 'mainslider', // [CLASS] (FORCED CLASS) the class on your sliding items
                swingSpeed: "medium", // accepts "slow","medium","fast" or int speed: example 900
                permalinking: true, // ONLY WORKS WITH sliderClickLink set to 'a'. If you want to show page.html#slide in the url bar and have it start on that slide
                wiggle: true // do you want it to bounce when you slide
            });
           
		     $.wiggleSlide({
                sliderNav: '.slidelink', // [ID OR CLASS] accepts any html element with an id.. "div" is recommended
                sliderClickLink: 'a', // [ELEMENT] accepts "a","li","div" html element, must be inside 'slider-nav', what you click on to slide
                hiddenContainer: '#mainconent', // [ID OR CLASS] accepts any html element with an id.. "div" is recommended
                sliderItemClassName: 'mainslider', // [CLASS] (FORCED CLASS) the class on your sliding items
                swingSpeed: "medium", // accepts "slow","medium","fast" or int speed: example 900
                permalinking: true, // ONLY WORKS WITH sliderClickLink set to 'a'. If you want to show page.html#slide in the url bar and have it start on that slide
                wiggle: true // do you want it to bounce when you slide
            });
		   
        });