  jQuery(document).ready(function(){  
    jQuery(".show_cats a").click(function () {
    jQuery('#cats_list').show("slow");
    jQuery('#popular_list').hide("slow");
    jQuery('#tags_list').hide("slow");
    jQuery(".show_cats").addClass("show_cats_h");
    jQuery(".show_popular").removeClass("show_popular_h");
    jQuery(".show_tags").removeClass("show_tags_h");
    });    
 
  });
  
  jQuery(document).ready(function(){  
    jQuery(".show_popular a").click(function () {
    jQuery('#popular_list').show("slow");
    jQuery('#cats_list').hide("slow");
    jQuery('#tags_list').hide("slow");
    jQuery(".show_popular").addClass("show_popular_h");
    jQuery(".show_cats").removeClass("show_cats_h");
    jQuery(".show_tags").removeClass("show_tags_h");
    });    
 
  });
  
  jQuery(document).ready(function(){  
    jQuery(".show_tags a").click(function () {
    jQuery('#tags_list').show("slow");
    jQuery('#popular_list').hide("slow");
    jQuery('#cats_list').hide("slow");
    jQuery(".show_tags").addClass("show_tags_h");
    jQuery(".show_popular").removeClass("show_popular_h");
    jQuery(".show_cats").removeClass("show_cats_h");
    });    
 
  });

