﻿$(document).ready(function() {
    //$(".panel_list .panel_body:gt(0)").hide();

//    if (location.href.indexOf('maps/groupmap.aspx') == -1) {
//        if (location.href.indexOf('maps/shopmap.aspx') > -1) {
//            if (location.search.length >= 1) {
//                $(".panel_list li:gt(6)").hide();
//            }
//        }
//    }

    $(".panel_head").click(function() {
        $(this).next(".panel_body").slideToggle(500)
        return false;
    });

    $(".collpase_all_panel").click(function() {
        $(".panel_body").slideUp(500)
        return false;
    });

    $(".show_all_panel").click(function() {
        $(this).hide()
        $(".show_recent_only").show()
        //$(".panel_list li:gt(6)").slideDown()
        return false;
    });

    $(".show_recent_only").click(function() {
        $(this).hide()
        $(".show_all_panel").show()
        //$(".panel_list li:gt(6)").slideUp()
        return false;
    });

});









$(document).ready(function(){

    $(".panel_list h3:first", ".panel_list h3:last").addClass("active");
	$(".panel_list p:not(:first)").hide();

	$(".panel_list h3").click(function(){

	  $(this).next("p").slideToggle("slow")
	  .siblings("p:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings("h3").removeClass("active");

	});

});







