J(document).ready(function(){
	
	J('#exibir_versoes').click(function(){
		J("#versoes").show();
		J("#fotos").hide();
	});
	
	J("#exibir_fotos").click(function(){
		J("#versoes").hide();
		J("#fotos").show();
	});

});
