<script>
$( "[href = '#short'] span" ).click(function() {
$( "[href = '#short']" ).animate({opacity: '0'}, 400);
$( "[href = '#long']" ).animate({opacity: '1'}, 400);
$( "[href = '#textbtm']" ).animate({opacity: '0'}, 400);
return false;
});
$( "[href = '#long'] span" ).click(function() {
$( "[href = '#long']" ).animate({opacity: '0'}, 400);
$( "[href = '#short']" ).animate({opacity: '1'}, 400);
$( "[href = '#textbtm']" ).animate({opacity: '1'}, 400);
return false;
});
</script>