Menu with tabs with jQuery

Menu with tabs with jQuery

Hi,

I want to navigate the tabs:


But when I click on "Description" or "Content" it goes like this and does not come back:


How do I get this?

Part of the code in php:
  1. <script type="text/javascript" src="js/jquery-1.6.4.min.js"></script>
  2. <script type="text/javascript" src="js/abas.js"></script>

Another part of the code in php:
  1. <section id="abas-geral">
  2. <ul class="menu">
  3. <li><a href="aba01">Description</a></li>
  4. <li><a href="aba02">Content</a></li>
  5. </ul>
  6. <section id="box">
  7. <div id="aba01" class="conteudo">
  8. <article id="descricao">
  9. <h5>Description</h5>
  10. <p>
  11. Test Content
  12. </p>
  13. </article>
  14. </div>
  15. </section>

Css file code:
  1. #abas-geral{
  2. width: 680px;
  3. margin: 10px auto;
  4. }

  5. ul.menu{
  6. margin:0;
  7. padding:0;
  8. float: left;
  9. list-style:none;
  10. height: 32px;
  11. border-bottom:1px solid #999;
  12. width: 100%;
  13. }
  14. ul.menu li {
  15. float: left;
  16. margin:0;
  17. padding:0;
  18. height:31px;
  19. line-height:31px;
  20. border: 1px solid#999;
  21. border-left:none;
  22. margin-bottom:-1px;
  23. background: e0e0e0;
  24. overflow:hidden;
  25. position:relative;
  26. }
  27. ul.menu li a {
  28. text-decoration:none;
  29. color: #000;
  30. display:block;
  31. font-size:1.2em;
  32. padding:0 20px;
  33. border: 1px solid #FFF;
  34. outline: none;
  35. }
  36. ul.menu li a:hover {
  37. background: #66ccff;

  38. }
  39. ul.menu li.active, ul.menu li.active a:hover{
  40. background: #FFF;
  41. border-bottom:1px solid #FFF;
  42. }

  43. #box{
  44. text-align: left;
  45. border: 1px solid #999;
  46. border-top: 5px;
  47. clear: both;
  48. float: left;
  49. width: 669px;
  50. background: #fff;
  51. padding-left: 4px;
  52. padding-right: 7px;
  53. }
JQuey file I'm using:

Tab file that I am using: