$(function () {
 $('#slideshow').anythingSlider({
				width           : 1024,   // Override the default CSS width
				theme           : 'minimalist-square',
				autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
				resumeDelay     : 14000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				buildArrows         : false,
				themeDirectory      : 'http://staging.make-a-store.com/mas_assets/theme/mas_website_staging/css/slider/theme-minimalist-square.css',
				delay           : 10000
				})
 				.anythingSliderFx({
   // base FX definitions
   // '.selector' : [ 'effect(s)', 'size', 'time', 'easing' ]
   // 'size', 'time' and 'easing' are optional parameters, but must be kept in order if added
    '.textSlide h1'       : [ 'top fade', '200px', '500', 'easeOutBounce' ],
    '.textSlide p'       : [ 'top fade', '200px', '500', 'easeOutBounce' ],
	'.textSlide img,.fade': [ 'fade' ],
    '.textSlide li'       : [ 'listLR' ]
  });
});

