// JavaScript Document
stepcarousel.setup({
	galleryid: 'incMainEventsCarousel',
	beltclass: 'incMbelt', 
	panelclass: 'incMpanel',
	autostep: {enable:false, moveby:1, pause:2500},
	panelbehavior: {speed:750, wraparound:true, persist:false},
	defaultbuttons: {enable: false, moveby: 1, leftnav: ['http://i34.tinypic.com/317e0s5.gif', -5, 80], rightnav: ['http://i38.tinypic.com/33o7di8.gif', -20, 80]},
	statusvars: ['startP', 'lastP', 'totalP'],
	contenttype: ['inline'],
	
	onslide:function(){
		
		document.getElementById('panelShown1').src = 'images/page_off.png';
		document.getElementById('panelShown2').src = 'images/page_off.png';
		document.getElementById('panelShown3').src = 'images/page_off.png';
	
		if(startP==1){
			document.getElementById('panelShown1').src = 'images/page_on.png';
		}
		if(startP==2){
			document.getElementById('panelShown2').src = 'images/page_on.png';
		} 
		if(startP==3){
			document.getElementById('panelShown3').src = 'images/page_on.png';
		} 
	}
})
