// JavaScript Document


	$(document).ready(function(){

			
			
$('#slider1')
	.anythingSlider({
		width          : 460,
		height         : 260,
		startStopped   : false,
		toggleControls : false,
		theme          : 'metallic',
		navigationFormatter : function(index, panel){
  			return index; // This would have each tab with the text 'Panel #X' where X = index
 		}
		})

});
