$(document).ready(function(){
	function maistuning(){
		$('#mapa-botao').click(function() {
			$('#vitrine-fotos').hide();
			$('#mapa').show();
			$('#video-evento').hide();
		});
		
		
		$('#slide-botao').click(function() {
			$('#vitrine-fotos').show();
			$('#mapa').hide();
			$('#video-evento').hide();
		});

		$('#video-botao').click(function() {
			$('#vitrine-fotos').hide();
			$('#mapa').hide();
			$('#video-evento').show();
		});


		
	} 


	function start(){
		maistuning();
	}
	start();
});







