$(document).ready(function(){		$('.map_open').click(function(){
    //$('.map_open').click(function(){		//alert('111');
        $('.map_show').show(600);		return false;
    });
    $('.map_show .title_map').click(function(){
        $('.map_show').hide(600);
    });
    
    
    $('area').hover(function(){
        var city=$(this).attr('href');
        //alert(city);
        $('.map_show table.'+city+'').show(100);
        //$('.map_show table').show(100);
    },
    function(){
        $('.map_show table').hide(100);
    }
    );
    $('area').click(function(){
        return false;
    });
});
