Accordion Menu links not working

Accordion Menu links not working

I followed a tutorial on here about Expanding Sliding Menu's or Accordion Menu's.

Here is the script:

  1. $(document).ready(function(){
  2. $(".Left #SideCategoryList ul#parent-cats ul:not(:first)").hide();
  3. $(".Left #SideCategoryList ul#parent-cats ul:visible").hide();
  4. $(".Left #SideCategoryList ul#parent-cats li h3 a").click(function() {
  5. $(".Left #SideCategoryList ul#parent-cats li ul:visible").slideUp("slow");
  6. $(this).parent().next().slideDown("slow");
  7. return false;
  8. });
  9. $(".Left #SideCategoryList ul#parent-cats li ul li a").click(function() {
  10. return true;
  11. });
  12. });
My problem is that the sub-nav's that slide out are links that I want to click, and what they do is behave the same as the parent nav and don't click through to the pages.