
$(document).ready(function() {

    // Prepare Initial State
    $('.region-info').hide();
    $('a[href*=#region-info]').children("#minus-btn").hide();

    
    // Section A
    $('a[href*=#region-info]').click(function (e){
        e.preventDefault();
        $(this).children("#plus-btn").toggle();
        $(this).children("#minus-btn").toggle();
        $(this).parent().next().next().slideToggle("fast");
    });
    
});
