jQuery(document).ready(function() {
	jQuery('.hidetext').hide();
	jQuery('.showhide').hide();
	jQuery('.showtext').click(function(){
		jQuery('.showhide').show();
		jQuery('.hidetext').show();
		jQuery('.showtext').hide();
	})
	jQuery('.hidetext').click(function(){
		jQuery('.showhide').hide();
		jQuery('.hidetext').hide();
		jQuery('.showtext').show();
	})
});

console.log("Carregou");