$(document).ready(function() {
	if($('#map')) {
		$('#map area').each(function() {
			$(this).mouseover(function(e) {
				var country_id = $(this).attr('id').replace('area_', '');
				$('#'+country_id).show();
				$('#a_'+country_id).css("color","#FFF");
				$('#a_'+country_id).css("background-image","url(./images/overmenugauche.gif)");
				$('#a_'+country_id).css("background-repeat","repeat-x");


			});

			$(this).mouseout(function(e) {
				var country_id = $(this).attr('id').replace('area_', '');
				$('#'+country_id).hide();
				$('#a_'+country_id).css("color","#ddf6ff");
				$('#a_'+country_id).css("background-image","none");
			});

			$(this).click(function(e) {
				e.preventDefault();
				var country_id = $(this).attr('id').replace('area_', '');
				var l_url = $('#a_'+country_id).attr('href');
				$(location).attr('href',l_url);
			});

		});
	}
	if($('#bloclienregion')) {
		$('#bloclienregion a').each(function() {
			$(this).mouseover(function(e) {
				var country_id = $(this).attr('id').replace('a_', '');
				$('#'+country_id).show();
				$('#a_'+country_id).css("color","#FFF");
				$('#a_'+country_id).css("background-image","url(./images/overmenugauche.gif)");
				$('#a_'+country_id).css("background-repeat","repeat-x");
			});
			$(this).mouseout(function(e) {
				var country_id = $(this).attr('id').replace('a_', '');
				$('#'+country_id).hide();
				$('#a_'+country_id).css("color","#ddf6ff");
				$('#a_'+country_id).css("background-image","none");
			});

		});
	}


});
