$(document).ready(function(){


    $('#prod-troca').cycle({
        fx:    'fade',
        speed:  300,
        timeout:  10000 ,
        next:   '#next2',
        prev:   '#prev2'
     });



	$('#missao').hide();
	$('#visao').hide();
	$('#valores').hide();




});


	function mostra(id){
		$('#missao').hide();
		$('#visao').hide();
		$('#valores').hide();
		$('#historico').hide();
		$("#"+id).show();
	}

