	function highlight_event(eventId)
	{
		$("#event_"+eventId+"").css("background-color", "#9BCD65");
	}
	
	function unhighlight_event(eventId)
	{
		$("#event_"+eventId+"").css("background-color", "#FFFFFF");
	}
	
	function map_slider_hide()
	{
		$("#mapzone").animate({
			'width': "-=400px"},
			500,
			'swing',
			function(){
				$("#googlemap").hide();
				$('#liste_events td:nth-child(1), #liste_events th:nth-child(1)').hide();
				$('#liste_events td:nth-child(2), #liste_events th:nth-child(2)').show();
				$('#liste_events td:nth-child(3), #liste_events th:nth-child(3)').show();
				$('#liste_events td:nth-child(4), #liste_events th:nth-child(4)').hide();
				$('#liste_events td:nth-child(5), #liste_events th:nth-child(5)').show();
				$('#liste_events td:nth-child(6), #liste_events th:nth-child(6)').show();
				$('#liste_events td:nth-child(7), #liste_events th:nth-child(7)').show();
				$('#liste_events td:nth-child(8), #liste_events th:nth-child(8)').show();
				$('#liste_events td:nth-child(9), #liste_events th:nth-child(9)').show();
			}
		);
		
		$("#arrow_button_show").show();
		$("#arrow_button_hide").hide();	
		
	}

	function map_slider_show()
	{
		$("#mapzone").animate({
			'width': "+=400px"},
			500,
			'swing',
			function(){$("#googlemap").show();}
		);
		
		$("#arrow_button_show").hide();
		$("#arrow_button_hide").show();
		
		$('#liste_events td:nth-child(1), #liste_events th:nth-child(1)').show();
		$('#liste_events td:nth-child(2), #liste_events th:nth-child(2)').hide();
		$('#liste_events td:nth-child(3), #liste_events th:nth-child(3)').show();
		$('#liste_events td:nth-child(4), #liste_events th:nth-child(4)').show();
		$('#liste_events td:nth-child(5), #liste_events th:nth-child(5)').hide();
		$('#liste_events td:nth-child(6), #liste_events th:nth-child(6)').show();
		$('#liste_events td:nth-child(7), #liste_events th:nth-child(7)').hide();
		$('#liste_events td:nth-child(8), #liste_events th:nth-child(8)').hide();
		$('#liste_events td:nth-child(9), #liste_events th:nth-child(9)').show();
		
	}
	
	
	function set_map_center(lat, long)
	{
		map.setCenter(new GLatLng(lat, long));
	}
	
	
	function set_center_to(pays)
	{
		switch (pays){
			case 'france':
				lat = 47.487513008956554;
				long = 2.8125;
				zoom = 5;
				break;
			case 'guadeloupe':
				lat = 16.093320185359268;
				long = -61.45751953125;
				zoom = 9;
				break;
			case 'guyane':
				lat = 4.817312315826116;
				long = -52.877197265625;
				zoom = 7;
				break;
			case 'martinique':
				lat = 14.631423888251147;
				long = -60.99884033203125;
				zoom = 9;
				break;
			case 'reunion':
				lat = -21.12293562133021;
				long = 55.51666259765625;
				zoom = 9;
				break;
			case 'polynesie':
				lat = -17.636169724251676;
				long = -149.4415283203125;
				zoom = 9;
				break;
			case 'caledonie':
				lat = -21.53484700204879;
				long = 165.69580078125;
				zoom = 7;
				break;
			case 'monde':
				lat = 47.517200697839414;
				long = 6.328125;
				zoom = 2;
				break;
			default :
				lat = 47.487513008956554;
				long = 2.8125;
				zoom = 5;
				break;
		}
		
		map.setCenter(new GLatLng(lat, long), zoom);
	}
	



