(function($) {
var slider = ['Recipe', 'Quote', 'Image', 'Quote #2', 'Image #2'];
	function formatText(index, panel) {
		return slider[index - 1];
	}
$(document).ready(function(){
	$('#slider')
	.anythingSlider({
		width               : 525,
		height              : 205,
		resizeContents      : false,
		startStopped        : false,
		navigationFormatter : formatText
		/* navigationFormatter : function(i, panel){
			return ['Top', 'Right', 'Bottom', 'Left'][i - 1];
		} */

	})
});
})(jQuery);
