		// DOM Ready
$(function(){
  $('#slider').anythingSlider({
    // A HTML element (jQuery Object, selector or HTMLNode) to which the controls will be appended if not null
    appendControlsTo : $('#slider-nav'),
    buildStartStop : false,
    autoPlay : true,
    delay : 12000,

    // Details at the top of the file on this use (advanced use)
    navigationFormatter: function(index, panel) {
    // This is the default format (show just the panel index number)
    return "" + index;
  }
  });
});

