function showAZS(region_id, oblast_id) {
    $('#map_result').html('<img src="/images/ajax/red-bar.gif" />');
    $('#map_result').load("?result", {'oblast_id':oblast_id.substring(1)});
}

function generateOpens() {
  $("#map_result ul li a.switch, #map_result ul li a.title").bind("click", function(e) 
  {
        $(this).parent().attr({"class": $(this).parent().hasClass("opened") ? "closed" : "opened"});
        return false;
    });
};


