$(document).ready(function () 
    {
      $(".browsenav li a.category").bind('click', function() {
		 $(".browsenav li").children("div.list").hide(); // hide em all
		 $(this).parent().children("div.list").show(); // show this one
			$(this).parent().children("div.list").css("z-index","999"); // ie hack
		return false;
		});
	  $(".browsenav div.term a.close").bind('click', function() {
		 $(".browsenav li").children("div.list").hide();
		return false;
		});
    });
