// CARROSEL DO PLAYER
stepcarousel.setup({
	galleryid: 'mainPlayer',
	beltclass: 'belt',
	panelclass: 'nPlayers',
	panelbehavior: {speed:500, wraparound:true, persist:false},
	autostep: {enable:true, moveby:1, pause:4000},
	defaultbuttons: {enable: false, moveby: 1, leftnav: ['arrowl.gif', -10, 100], rightnav: ['arrowr.gif', -10, 100]},
	contenttype: ['inline']
});


// BOTOES DO PLAYER (STOP E RESTART)
$(document).ready(function(){
	$('.btSTOP').click(function(){
		$('.btSTOP').hide();
		$('.btRESTART').show();
	});
	$('.btRESTART').click(function(){
		$('.btRESTART').hide();
		$('.btSTOP').show();
	});
});	
