$(document).ready(function(){
  $('.hide').hide();
  $('.bottom a').toggle(showSoluc,showText);
});


function showSoluc()
{
  var a=this;
  $('#at'+$(this).attr('title')).hide('slow',function(){
    $('#as'+$(a).attr('title')).show('slow');
  });
  $(this).html('Texto');
}

function showText()
{
  var a=this;
  $('#as'+$(this).attr('title')).hide('slow',function(){
    $('#at'+$(a).attr('title')).show('slow');
  });
  $(this).html('Solución');
}