function activate_county(county)
{
    
    deactivate_county();
	// rollover info dialog
    //  
    var x;
    var coords;
    x="ga_"+county;
    strCoords=$(x).readAttribute('coords');
        //  
    coords = strCoords.split(",");
        //  
        //  
        //  
    $('map_bubble_'+x).setStyle({
        
        top: (coords[1]-110)+"px",
        left: (coords[0]-75)+"px"
        //      // zIndex:20000000000
        });
    //     
    //     
    //     
    //     // $('county_search').setStyle({
    //     //  
    //     //  zIndex:0
    //     // });
    //     // alert('bang');
    //     
    var div_name;
    div_name='map_bubble_'+x;
    //     
        
        
        
        // Element.hide(div_name);
        // alert(div_name);
        Element.show(div_name);  
        
        
}

function deactivate_county()
{
    var active_county_bubbles;
        active_county_bubbles = $('base_map').getElementsByClassName('map_bubble');
        for (var index = 0; index < active_county_bubbles.length; ++index) {
          var item = active_county_bubbles[index];
         Element.hide(item.id);
        }
    // $('county_search').setStyle({    
    //  zIndex:3,
    // });
}

