 //-------------------------Anything Slider-----------------------------//
	
		$(function(){

			$('#slider1').anythingSlider({
			    startStopped    : false, // If autoPlay is on, this can force it to start stopped
				width           : 500,   // Override the default CSS width
				theme           :  'default', //  'metallic'default,
				autoPlay            : true, 
				autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
				resumeDelay     : 10000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				
				}
			});

			$('#slider2').anythingSlider({
				width               : 500,   // if resizeContent is false, this is the default width if panel size is not defined
				height              : 230,   // 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
				startStopped        : false,  // If autoPlay is on, this can force it to start stopped
				navigationFormatter : function(index, panel){ // Format navigation labels with text
					return ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2'][index - 1];
				}
			});

		});
