stepcarousel.setup({
galleryid: 'galleryB', //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: ['reportA', 'reportB', 'reportC'],
contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})

function mostra(qual) {
	var str_id = qual.id;
	var id = str_id.split('_');
	jQuery("div.panel").click(function(){
			jQuery("div.quadro").hide();
			jQuery('#qd_' + id[1]).show();
			});
}


