stepcarousel.setup({
	galleryid: 'mygallery',		//id of carousel DIV
	beltclass: 'belt',			//class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel',		//class of panel DIVs each holding content
		//FOR autostep:
		//	enable: Boolean (true/ false) setting on whether to enable auto rotation. 
		//	moveby: Number of panels to move by each time. Negative number moves panels backwards instead. 
		//	pause: Pause between rotation in milliseconds.
	autostep: {enable:false, moveby:1, pause:5000},
	panelbehavior: {speed:500, wraparound:true, persist:true},

		//FOR defaultbuttons:
		//	enable: Boolean (true/ false) setting on whether to enable the two navigational images.
		//	moveby: Sets how many panels the Carousel should move by in either directions when the navigational buttons are clicked on (1=foward 1 panel, -1=back 1 panel etc).
		//	leftnav: An array containing the path to the left navigational image, plus any additional x and y offsets from its default location on the page (upper left corner of Carousel Viewer). For example: ['arrowl.gif', -10, 100]
		//	rightnav: An array containing the path to the right navigational image, plus any additional x and y offsets from its default location on the page (upper right corner of Carousel Viewer). For example: ['arrowr.gif', -10, 100] 
//	defaultbuttons: {enable: true, moveby: 1, leftnav: ['http://i34.tinypic.com/317e0s5.gif', -50, 80], rightnav: ['http://i38.tinypic.com/33o7di8.gif', -20, 80]},
	defaultbuttons: {enable: false, moveby: 1, leftnav: ['images/left_off.gif', -66, 32], rightnav: ['images/right_off.gif', 21, 32]},
	statusvars: ['statusA', 'statusB', 'statusC'],	//register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline']		//content setting ['inline'] or ['external', 'path_to_external_file']
})
