	stepcarousel.setup({
		galleryid: 'fmviewer', //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
		panelbehavior: {speed:5, wraparound:false, persist:false},
		defaultbuttons: {enable: true, moveby: 1, leftnav: ['images/layout/prev.gif', 20, 280], rightnav: ['images/layout/next.gif', -80, 280]},
		statusvars: ['statusA', 'statusB', 'statusC'], // Register 3 "status" variables
		contenttype: ['inline'],
		oninit:function(){
			$(".panel").hide();
		},
		onslide:function(){
			for(i = 1; i < $(".panel").length + 1; i++){
				if(i == statusA){
					$(".panel:nth-child("+i+")").show();
				} else {
					$(".panel:nth-child("+i+")").hide();
				}
			};
			$("#statusA").text(statusA);
			$("#statusC").text(statusC);
		}
	})
