$(document).ready(function() {
/* Hilight de la carte*/
	$('.map').maphilight({
		fill: true,
		fillColor: 'bb9253',
		fillOpacity: 1,
		stroke: true,
		strokeColor: 'bb9253',
		strokeOpacity: 1,
		strokeWidth: 1,
		fade: true,
		alwaysOn: false
	});
/* Select des Regions sur la home
	et du footer et de la nav (atlas)
*/
	$('input#submit_regions').click(function(){
		var region = $("select#region_france").val();
    	if(region != ""){
    		location.href = region;
    	}
    });
});
