$(function(){
  $("body").append('<div id="plan-station" style="display:none"><img src="/images2012/commun/plan-station.jpg"><div id="plan-position"></div></div>' +
		   '<div id="plan-google" style="display:none"></div>');
});

function adjustPlanPosition(position) {
 var tp = {A:1,B:2,C:3,D:4,E:5,F:6,G:7,H:8,I:9};
 $('#plan-position').css('margin-left',93*(tp[position[0]]-1)+'px')
                    .css('margin-top',103*(parseInt(position[position.length-1])-1)+'px');
}
function adjustGmapPosition(lat,lng) {
 var zoom=16;
 $('#plan-google').html('<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.fr/maps?f=q&amp;source=s_q&amp;hl=fr&amp;geocode=&amp;q='+lat+','+lng+'&amp;aq=&amp;sll='+lat+','+lng+'&amp;sspn=10.312236,23.269043&amp;vpsrc=0&amp;ie=UTF8&amp;t=m&amp;z='+zoom+'&amp;ll='+lat+','+lng+'&amp;output=embed"></iframe>');
}

