// JavaScript Document
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
	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']
	onpanelclick:function(target){
			if (target.tagName=="IMG") //if clicked on element is an image
				location.href=target.id;
		}
})

stepcarousel.setup({
	galleryid: 'mygallery2', //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
	statusvars: ['statusA2', 'statusB2', 'statusC2'],
	contenttype: ['inline'], //content setting ['inline'] or ['external', 'path_to_external_file']
	onpanelclick:function(target){
			if (target.tagName=="IMG") //if clicked on element is an image
				location.href=target.id;
		}
})
stepcarousel.setup({
	galleryid: 'mygallery3', //id of carousel DIV
	beltclass: 'belt3', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel3', //class of panel DIVs each holding content
	statusvars: ['statusA2', 'statusB2', 'statusC2'],
	contenttype: ['path_to_external_file'], //content setting ['inline'] or ['external', 'path_to_external_file']
	onpanelclick:function(target){
			if (target.tagName=="a") //if clicked on element is an image
				location.href=target.id;
		}
})