/**
 * @author kietcallies
 */
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
	panelbehavior: {speed:500, wraparound:true, persist:true},
	defaultbuttons: {enable: false, moveby: 1, leftnav: ['images/1leftarrow.png', -5, 80], rightnav: ['images/1rightarrow.png', -30, 80]},
	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	onslide:function(){ 
		currentPanel="#newsContent"+statusA;
		$("div.stepcarousel").height($(currentPanel).height()+100);
	},
	contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file'], 
})	
