$(function () {

			$('#slider1').anythingSlider({
				width           : 700,  // Override the default CSS width
				height          : 230,  // Override the default CSS width
				toggleControls  : false, // if true, then slide in controls on hover and slider change, hide @ other times
				autoPlay        : true,
				delay           : 8000,
				theme           : 'minimalist-round'
			});

			// Report Events to console
			$('.anythingSlider').bind('slideshow_start slideshow_stop slideshow_paused slideshow_unpaused slide_init slide_begin slide_complete',function(e, el){
				// show object ID + event (e.g. "slider1: slide_begin")
				var txt = el.id + ': ' + e.type + ', now on panel #' + $(el).data('AnythingSlider').currentPage;
				$('#status').text(txt);
				if (window.console && window.console.firebug){ console.debug(txt); } // added window.console.firebug to make this work in Opera
			})

		});
