$(document).ready(function(){
	$("#transparent").attr("alt", "");
	
    $('#carte-regions map area').hover(function () {
        $('#' + $(this).attr('id')).css('display','block');
    },function () {
        $('#' + $(this).attr('id')).css('display','none');
    });
    
    $('#carte-regions map area').click(function () {
    	$(this).qtip('hide');
    	$('#' + $(this).attr('id')).css('display','none');
    });
    
    $('#carte-regions map area').each(function() {
        $(this).qtip(
        {
            content: '<div class="map-qtip-bublle">' + $(this).attr('alt') + '</div>',
            position: {
        		corner: {
        			target: 'topRight',
                   	tooltip: 'bottomLeft'
        		}
        	},
            style: { 
              width: 200,
              padding: 0,
              margin: 0,
              /*border: {
        		width: 5,
        		radius: 5,
        		color: '#557786'
        		},*/
              border: 0,
              //background: '#668a99'
              background: '#235AA6'
            },
        	tip: true
        });
        
        $(this).attr("alt", "");

    });
});
