$(document).ready(function(){
	
	$('#btItineraire').click(function(){
		if ($('#depart').val() != '') {
			$('#presentation').hide();
			$('#itineraire').show();
			$('#btRetour').show();
			initialize($('#depart').val(),$('#arrivee').val());
		}
	});
	
	
	$('.light').hide();
	$('.lightDiapo').hide();
    $('a.lightbox').lightBox();

});

function initialize(depart,arrivee) {
	$("#lienItineraire").empty();
	$("#lienItineraire").prepend("<a href=\"#\" onclick=\"affichIti();return false;\">Masquer l'itinéraire</a>");
	$("#lienItineraire").show();
	
	$("#itineraire").empty();
	
	map2 = new GMap2(document.getElementById("map"));
	directionsPanel = document.getElementById("itineraire");
	map2.setCenter(new GLatLng($("#lattitude").val(),$("#longitude").val()), 10);
	directions = new GDirections(map2, directionsPanel);
	
	directions.load('from: '+depart+' to: '+arrivee, {"locale": "fr"});
	$("#itineraire").removeAttr("style");
	$("#itineraire").attr("style","display:block;");
}

function affichIti(){
	if(!($("#itineraire").is(":hidden"))){
		$("#itineraire").hide();
		$("#lienItineraire").empty();
		$("#lienItineraire").prepend("<a href=\"#\" onclick=\"affichIti();return false;\">Afficher l'itinéraire</a>");
	}else{
		$("#itineraire").show();
		$("#lienItineraire").empty();
		$("#lienItineraire").prepend("<a href=\"#\" onclick=\"affichIti();return false;\">Masquer l'itinéraire</a>");
	}
}
