var captions = { "caption": [
			"Experience Myanmar with our packages###our-packages-fully-guided.aspx",
			"Five beautiful regions to discover... Get off the beaten track!###information-on-myanmar.aspx",
			"Live and breathe the culture... Pagodas, temples and more###things-you-should-know-dress.aspx",
			"A food destination and sensation###things-you-should-know-health.aspx",
			"Five Days or Twenty One... How long have you got?###our-packages.aspx",
	]
};


stepcarousel.setup({
    galleryid: 'previewimage', //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, wrapbehavior: 'slide', persist: false },
    autostep: { enable: true, moveby: 1, pause: 4000 },
    defaultbuttons: { enable: false, moveby: 1, leftnav: ['', -15, 185], rightnav: ['', -65, 185] },
    statusvars: ['statusA', 'statusB', 'statusC'],
    contenttype: ['inline'], //content setting ['inline'] or ['external', 'path_to_external_file']
    onslide: function() {
        statusA = statusA - 1;
        var cap = captions.caption[statusA].split("###");
        jQuery('div#caption').html(cap[0]);
        jQuery('div#caption-link a').attr('href', cap[1]);
    }
});

