$(function(){
			$('#slider').anythingSlider({
				width          : 650,
				height         : 270,
				toggleControls : false,
				buildArrows : false,
				autoPlay : true,
				delay: 15000,
				startStopped        : true, // If autoPlay is on, this can force it to start stopped
				resizeContents      : true,
				addWmodeToObject    : 'transparent',
				navigationFormatter : function(index, panel){ // Format navigation labels with text
					return ['ADM APU A8', 'Seagate GoFlex'][index - 1];
				}
			});
		});
