<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
>

<channel>
	<title>Escapade Champenoise - Pr&#233;parez votre s&#233;jour en Champagne dans la R&#233;gion de Reims</title>
	<link>http://www.escapade-champenoise.fr/</link>
	<description>Toutes les manifestations de Reims et sa r&#233;gion, s&#233;jours, h&#244;tels, visite de caves et du vignoble, golfs, ...</description>
	<language>fr</language>
	<generator>SPIP - www.spip.net</generator>







		
	<item>
		<title>Visite guid&#233;e gratuite au Mus&#233;e Saint Remi</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=824&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Visite-guidee-gratuite-au-Musee</guid>
		<dc:date>2010-01-13T17:32:03Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Les pavements anciens :le 05/09/2010 &lt;br /&gt;Visite guid&#233;e &lt;br /&gt;Horaires : de 14h30 &#224; 16h &lt;br /&gt;Tarif : Entr&#233;e libre &lt;br /&gt;Renseignements et r&#233;servation : T&#233;l : 03.26.35.36.90 ou 03.26.35.36.91 &lt;br /&gt;Mus&#233;e Saint Remi - 53, rue Simon


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1065.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;170&quot; height=&quot;121&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Les pavements anciens :le 05/09/2010&lt;/strong&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Visite guid&#233;e&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Horaires :
de 14h30 &#224; 16h&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Tarif :
Entr&#233;e libre&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Renseignements et r&#233;servation :
T&#233;l : 03.26.35.36.90 ou 03.26.35.36.91&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Mus&#233;e Saint Remi - 53, rue Simon
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2428, 4.03936), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1065}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Les Puces de Reims</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1089&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Les-Puces-de-Reims,583</guid>
		<dc:date>2008-01-02T13:08:45Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Chaque 1er dimanche du mois, les brocanteurs exposent leurs tr&#233;sors de 8h &#224; 17h30 au Parc des Expositions de Reims ou au chapiteau du Boulingrin &lt;br /&gt;Entr&#233;e libre &lt;br /&gt;6 Juin Chapiteau du boulingrin &lt;br /&gt;4 Juillet Chapiteau du boulingrin &lt;br /&gt;5 Septembre Chapiteau du boulingrin &lt;br /&gt;3 Octobre Parc des Expo &lt;br /&gt;7 Novembre Parc des Expo &lt;br /&gt;5 D&#233;cembre Parc des Expo &lt;br /&gt;Plus de renseignements : 03.26.02.04.06 &lt;br /&gt;Site (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton583.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;350&quot; height=&quot;259&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Chaque &lt;strong class=&quot;spip&quot;&gt;1er dimanche du mois&lt;/strong&gt;, les brocanteurs exposent leurs tr&#233;sors de 8h &#224; 17h30 au Parc des Expositions de Reims ou au chapiteau du Boulingrin&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Entr&#233;e libre&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;6 Juin Chapiteau du boulingrin
&lt;br /&gt;4 Juillet Chapiteau du boulingrin
&lt;br /&gt;5 Septembre Chapiteau du boulingrin
&lt;br /&gt;3 Octobre Parc des Expo
&lt;br /&gt;7 Novembre Parc des Expo
&lt;br /&gt;5 D&#233;cembre Parc des Expo&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Plus de renseignements&lt;/strong&gt; : 03.26.02.04.06
&lt;br /&gt;&lt;a href=&quot;http://www.europuces.com/calendrier-reims.htm&quot; class=&quot;spip_out&quot;&gt;Site web&lt;/a&gt; pour en savoir plus
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2499, 4.05327), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:583}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>March&#233; aux puces de St Imoges</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=957&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Marche-aux-puces-de-St-Imoges</guid>
		<dc:date>2010-03-29T16:25:00Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>5 Septembre 2010 &lt;br /&gt;L'un des plus grand march&#233; aux puces de la r&#233;gion ; Les organisateurs, chaque ann&#233;e, attendent des centaines d'exposants et des milliers de visiteurs. &lt;br /&gt;Contact : 03 26 52 87 92


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1192.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;120&quot; height=&quot;89&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;5 Septembre 2010&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;L'un des plus grand march&#233; aux puces de la r&#233;gion ; Les organisateurs, chaque ann&#233;e, attendent des centaines d'exposants et des milliers de visiteurs.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Contact : 03 26 52 87 92
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.1106, 3.97583), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1192}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>&quot;Journ&#233;e vendange&quot; chez les vignerons</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1216&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Vendanges-en-Champagnes-chez-les</guid>
		<dc:date>2010-08-09T06:11:30Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Chaque ann&#233;e, les vendanges sont une f&#234;te en Champagne ! &lt;br /&gt;Balade dans les vignes, d&#233;couverte du pressoir, de la cuverie, d&#233;gustation de jus de raisin et de Champagnes. &lt;br /&gt;Des vignerons et acteurs touristiques de l'association Action Champagnes Tourisme vous accueillent pour vous faire partager,en toute convivialit&#233;, l'ambiance des vendanges. &lt;br /&gt;Les dates des vendanges sont approximatives : &lt;br /&gt;d&#233;but programm&#233; autour du 10 septembre 2010 selon les secteurs &lt;br /&gt;Renseignements : au 03.26.64.08.13 &lt;br /&gt;CHAMPAGNE Alain (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1426.png&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;297&quot; height=&quot;305&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Chaque ann&#233;e, les vendanges sont une f&#234;te en Champagne !&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Balade dans les vignes, d&#233;couverte du pressoir, de la cuverie, d&#233;gustation de jus de raisin
et de Champagnes.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Des vignerons et acteurs touristiques de l'association &lt;a href=&quot;http://www.champagne-tourisme.com/&quot; class=&quot;spip_out&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Action Champagnes Tourisme&lt;/strong&gt;&lt;/a&gt; vous accueillent pour vous faire partager,en toute convivialit&#233;, l'ambiance des vendanges.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Les dates des vendanges sont approximatives :
&lt;br /&gt;d&#233;but programm&#233; &lt;strong class=&quot;spip&quot;&gt;autour du 10 septembre 2010&lt;/strong&gt; selon les secteurs&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Renseignements : au 03.26.64.08.13&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;CHAMPAGNE Alain LALLEMENT - VERZY&lt;/strong&gt;
Visite des caves, du pressoir avec possibilit&#233; de d&#233;gustation de jus de raisin et de Champagne.
&lt;br /&gt;Tous les jours des vendanges sur rendez-vous de 9H00 &#224; 12H00 et de 14H00 &#224; 17H30.
Destin&#233;e aux petits groupes ou particuliers
&lt;br /&gt;Tarif : 4&#8364;/pers si visite sans achat. Sur r&#233;servation la veille : 03 26 97 92 32 ou 06 70 24 78 28.
&lt;br /&gt;19, rue Carnot - 51380 VERZY T&#233;l. : 03.26.97.92.32
&lt;br /&gt;&lt;a href=&quot;mailto:champagne.alain.lallement@club-internet.fr&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.champagne-alain-lallement.com/&quot; class=&quot;spip_out&quot;&gt;http://www.champagne-alain-lallement.com/ &lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;CHAMPAGNE AUTREAU-LASNOT - VENTEUIL&lt;/strong&gt;
&lt;br /&gt;Tous les jours des vendanges de 10H00 &#224; 12H00 et de 14H00 &#224; 17H30.
visite du pressoir, d&#233;gustations de jus de raisin et de nos cuv&#233;es
&lt;br /&gt;Tarif : Gratuit . Groupes ou individuels.
&lt;br /&gt;R&#233;servation pour les groupes au 03 26 58 49 35
&lt;br /&gt;6 rue du Ch&#226;teau - 51 480 VENTEUIL T&#233;l. : 03.26.58.49.35
&lt;br /&gt;&lt;a href=&quot;mailto:info@champagne-autreau-lasnot.com&quot; class=&quot;spip_out&quot;&gt;E-mail&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.champagne-autreau-lasnot.com/&quot; class=&quot;spip_out&quot;&gt;http://www.champagne-autreau-lasnot.com/&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;CHAMPAGNE J. CHARPENTIER &#8211; VILLERS SOUS CHATILLON&lt;/strong&gt; _ Tous les jours des vendanges De 09H00 &#224; 12H00 et de 14H00 &#224; 17H30. Groupe et individuels.
&lt;br /&gt;Visite des pressoirs traditionnels et modernes, visite de la cave, de la cuverie, des foudres et des f&#251;ts, remuage traditionnel et moderne, chantier de d&#233;gorgement.
&lt;br /&gt;Possibilit&#233; de repas &#224; partir de 20 personnes.
&lt;br /&gt;Tarif : Visite : 3&#8364;/pers pour les groupes. Repas : 29&#8364; ou 33,50 &#8364; &#224; partir de 20 pers.
&lt;br /&gt;88 rue de Reuil 51700 VILLERS SOUS CHATILLON T&#233;l. : 03.26.58.05.78 &lt;br /&gt;&lt;a href=&quot;mailto:info@jcharpentier.fr&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.jcharpentier.fr/&quot; class=&quot;spip_out&quot;&gt;http://www.jcharpentier.fr/&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt; CHAMPAGNE ASPASIE &#8211; ARISTON Fils - BROUILLET&lt;/strong&gt;
&lt;br /&gt;Durant 8 jours autour du 25 septembre
&lt;br /&gt;10H30 &#8211; 14H00 pour les groupes - 9H00 &#8211; 12H00 et 14H00 &#8211; 17H00 pour les individuels
&lt;br /&gt;Visite du pressoir et des caves suivie d'une d&#233;gustation de jus de raisin.
Tarif : 5&#8364; par pers.
&lt;br /&gt;R&#233;servation par mail ou t&#233;l &#224; Caroline : 03 26 97 43 46 ou contact@champagneaspasie.com &lt;br /&gt;4 et 8 Grande Rue 51 170 BROUILLET T&#233;l. : 03 26 97 43 46 &lt;br /&gt;&lt;a href=&quot;http://www.champagneaspasie.com/&quot; class=&quot;spip_out&quot;&gt;http://www.champagneaspasie.com/&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Champagne POIROT - BERGERES LES VERTUS&lt;/strong&gt;
&lt;br /&gt;Tous les jours.
de 10H00 &#224; 18H00
&lt;br /&gt;Visite de cave et balade dans les vignes
&lt;br /&gt;Tarif : Gratuit. Groupes ou individuels.
&lt;br /&gt;Rue Pernet 51130 - Berg&#232;res les Vertus T&#233;l. 03 26 52 02 26 &lt;br /&gt;&lt;a href=&quot;mailto:al.poirot@wanadoo.fr&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.vitiplus.com/champagne-poirot/&quot; class=&quot;spip_out&quot;&gt;http://www.vitiplus.com/champagne-poirot/&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;CHAMPAGNE F.P. ARNOULT-FLEURY LA RIVIERE&lt;/strong&gt; &lt;br /&gt;Tous les jours des vendanges (ferm&#233; lundi matin et mercredi), dimanche matin sur RDV, dimanche apr&#232;s-midi : 14H00-19H00 de 09H00 &#224; 12H30 et de 14H00 &#224; 19H00
&lt;br /&gt;Visite de cave, du pressoir et d&#233;gustation
&lt;br /&gt;Tarif : 4 &#8364; par pers. Groupes ou individuels.
Formule groupes (&#224; partir de 30 pers) Visite des caves, vignes&#8230;, d&#233;gustation et repas (boisson comprise dont une demi-bouteille de Champagne par personne.)
&lt;br /&gt;Tarif : 36&#8364; par pers. Sur r&#233;servation.
&lt;br /&gt;Route de Damery - 51480 Fleury la Rivi&#232;re T&#233;l. 03 26 58 42 53
&lt;br /&gt;&lt;a href=&quot;mailto:champagne-fp.arnoult@wanadoo.fr&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Champagne DAUBY &#8211; AY&lt;/strong&gt;
&lt;br /&gt;10 jours autour du 20 septembre
de 10H00 12H00 et de 14H00 &#224; 17H30
&lt;br /&gt;Visite du pressoir, des caves, balades dans les vignes, d&#233;gustations et chansons.
&lt;br /&gt;Tarif : Visite : 5 &#8364; par pers. Groupes (12 pers mini) et individuels
&lt;br /&gt;R&#233;servation la veille aupr&#232;s de Francine DAUBY : 06 12 77 07 56
&lt;br /&gt;22 rue Jeanson - 51160 AY. T&#233;l : 03 26 54 96 49
&lt;br /&gt;&lt;a href=&quot;mailto:champagne.dauby@wanadoo.fr&quot; class=&quot;spip_out&quot;&gt;E-mail&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.champagne-dauby.fr/&quot; class=&quot;spip_out&quot;&gt;http://www.champagne-dauby.fr/&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Champagne Andr&#233; JACQUART - VERTUS&lt;/strong&gt;
&lt;br /&gt;Tous les jours des vendanges de 10H30 &#224; 17H00
&lt;br /&gt;Visite du pressoir et d&#233;gustation de jus de raisin. Visite des caves. D&#233;gustation de jus de raisin et de Champagne. Possibilit&#233; repas &#171; typique &#187; des vendanges avec d&#233;gustation. Groupes) et individuels.
&lt;br /&gt;Tarif : Visite 6&#8364; par pers - Repas : 20&#8364;/ pers. Journ&#233;e : 30 &#8364;/pers.
&lt;br /&gt;R&#233;servation 48h &#224; l'avance pour les groupes et 24H pour les individuels aupr&#232;s de Marie DOYARD &lt;br /&gt;T&#233;l : 06.19.60.00.86
&lt;br /&gt;63 avenue de Bammental - BP14 - 51130 VERTUS T&#233;l. : 03.26.57.52.29 -
&lt;br /&gt;&lt;a href=&quot;http://www.a-jacquart-fils.com/&quot; class=&quot;spip_out&quot;&gt;http://www.a-jacquart-fils.com/&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Champagne Michel GONET - AVIZE&lt;/strong&gt;
&lt;br /&gt;Tous les jours des vendanges
&lt;br /&gt;Sur rendez-vous de 9H30 &#224; 12H30 et de 14H30 &#224; 17H00
&lt;br /&gt;Visite de cave et du pressoir. D&#233;gustation de jus de raisin et des cuv&#233;es.
Groupes ou individuels.
&lt;br /&gt;Tarif : Visite : 10&#8364; par pers - R&#233;servation conseill&#233;e.
&lt;br /&gt;196 avenue Jean Jaur&#232;s 51190 AVIZE T&#233;l : 03 26 57 50 56 &lt;br /&gt;&lt;a href=&quot;mailto:info@champagnegonet.com&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.champagnegonet.com/&quot; class=&quot;spip_out&quot;&gt;http://www.champagnegonet.com/&lt;/a&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;CHAMPAGNE COLIN - VERTUS&lt;/strong&gt;
&lt;br /&gt;Tous les jours des vendanges entre le 6 et 26 septembre
de 9H00 &#224; 12H00 et de 14H00 &#224; 18H00
&lt;br /&gt;Visite du pressoir, cave. D&#233;gustation de jus de raisin.
&lt;br /&gt;Tarif : Visite : 4,50&#8364; par pers (Carte : n&#176;6). Sur r&#233;servation.
&lt;br /&gt;101 avenue du Gal de Gaulle 51130 VERTUS T&#233;l. 03 26 58 86 32
&lt;br /&gt;&lt;a href=&quot;mailto:info@champagne-colin.com&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.champagne-colin.com/&quot; class=&quot;spip_out&quot;&gt;http://www.champagne-colin.com/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;
		
		</content:encoded>


		
		<enclosure url="http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/pdf/vendanges-en-champagnes-2010-.pdf" length="850693" type="application/pdf" />
		

	</item>




		
	<item>
		<title>Festival de la Poule des Champs</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=616&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Festival-de-la-Poule-des-Champs</guid>
		<dc:date>2009-08-25T12:26:15Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>Art&#233;go</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>

		<dc:subject>inclure-dans-la-lettre</dc:subject>

		<description>10 et 11 Septembre 2010 &lt;br /&gt;Festival musical &#224; la campagne &#224; Auberive petit village du nord de la Marne &lt;br /&gt;Tout le programme : www.lapouledeschamps.com


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;

/ 
&lt;a href="http://www.escapade-champenoise.fr/+-inclure-dans-la-lettre-+" rel="tag"&gt;inclure-dans-la-lettre&lt;/a&gt;

		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton906.png&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;486&quot; height=&quot;441&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;10 et 11 Septembre 2010&lt;/strong&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Festival musical &#224; la campagne &#224; Auberive
petit village du nord de la Marne&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Tout le programme : &lt;a href=&quot;http://www.lapouledeschamps.com/&quot; class=&quot;spip_out&quot;&gt;www.lapouledeschamps.com&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.1961, 4.38904), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:906}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>4&#232;me week end de l'Excellence Automobile</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=102&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/3eme-week-end-de-l-Excellence</guid>
		<dc:date>2007-03-21T16:27:15Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>

		<dc:subject>projecteur_sur</dc:subject>

		<description>Les 10,11 et 12 septembre 2010 se d&#233;roulera le 4eme Week-End de l'Excellence Automobile de Reims-Gueux &lt;br /&gt;Avec plus de 30 000 visiteurs en septembre dernier, le &#171; Week-End de l'Excellence &#187; devient d&#233;sormais une r&#233;f&#233;rence en mati&#232;re de rassemblement de v&#233;hicules historiques. &lt;br /&gt;Le mill&#233;sime 2010 du &#171; WEEA &#187; pourra se targuer de r&#233;unir dans un m&#234;me temps, autant d'autos que de motos d'exception ayant marqu&#233; l'histoire. &lt;br /&gt;Site web pour en savoir (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;

/ 
&lt;a href="http://www.escapade-champenoise.fr/+-projecteur-sur-+" rel="tag"&gt;projecteur_sur&lt;/a&gt;

		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton251.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;427&quot; height=&quot;640&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Les 10,11 et 12 septembre 2010 se d&#233;roulera le &lt;strong class=&quot;spip&quot;&gt;4eme Week-End de l'Excellence Automobile de Reims-Gueux&lt;/strong&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Avec plus de 30 000 visiteurs en septembre dernier, le &#171; Week-End de l'Excellence &#187; devient d&#233;sormais une r&#233;f&#233;rence en mati&#232;re de rassemblement de v&#233;hicules historiques.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Le mill&#233;sime 2010 du &#171; WEEA &#187; pourra se targuer de r&#233;unir dans un m&#234;me temps, autant d'autos que de motos d'exception ayant marqu&#233; l'histoire.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;a href=&quot;http://www.weea-organisation.com&quot; class=&quot;spip_out&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Site web&lt;/strong&gt;&lt;/a&gt; pour en savoir plus&lt;/p&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>EXTRA#2 Beno&#238;t Pelletier</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1120&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/EXTRA-2-Benoit-Pelletier</guid>
		<dc:date>2010-06-17T15:49:51Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Photographe et graphiste, Beno&#238;t Pelletier vit et travaille &#224; Reims. Ses photographies se jouent de nos sens et de notre perception du monde r&#233;el. Il investit l'Ancien Coll&#232;ge des J&#233;suites qui devient le sujet de ses photographies. Cette cr&#233;ation jette un regard &#233;trange et d&#233;concertant sur ce lieu patrimonial familier. &lt;br /&gt;Du 11 septembre au 10 octobre &lt;br /&gt;Tous les jours de 14h00 &#224; 18h00 &lt;br /&gt;Ancien Coll&#232;ge des J&#233;suites (Salle Br&#251;lart) &lt;br /&gt;Site web pour en savoir (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1330.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;640&quot; height=&quot;428&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Photographe et graphiste, &lt;a href=&quot;http://www.benoitpelletier-diabolus.fr/&quot; class=&quot;spip_out&quot;&gt;Beno&#238;t Pelletier&lt;/a&gt; vit et travaille &#224; Reims. Ses photographies
se jouent de nos sens et de notre perception du monde r&#233;el. Il investit l'Ancien
Coll&#232;ge des J&#233;suites qui devient le sujet de ses photographies. Cette cr&#233;ation jette
un regard &#233;trange et d&#233;concertant sur ce lieu patrimonial familier.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Du 11 septembre au 10 octobre&lt;/strong&gt;
&lt;br /&gt;Tous les jours de 14h00 &#224; 18h00
&lt;br /&gt;Ancien Coll&#232;ge des J&#233;suites (Salle Br&#251;lart)
&lt;br /&gt;&lt;a href=&quot;http://www.benoitpelletier.fr&quot; class=&quot;spip_out&quot;&gt;Site web&lt;/a&gt; pour en savoir plus &lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2466, 4.04048), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1330}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Didier Gustin &#224; l'Affiche</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1043&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Didier-Gustin-a-l-Affiche</guid>
		<dc:date>2010-04-27T16:15:29Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Plus de 60 imitations chant&#233;es ou sketchs avec un guitariste &lt;br /&gt;Didier Gustin nous emm&#232;ne &#224; travers des chansons parodi&#233;es et des sketchs dans un univers m&#234;l&#233; d'humour et d'&#233;motions. &lt;br /&gt;Un grand moment de bonheur et d'&#233;clats de rire &#224; d&#233;guster sans mod&#233;ration. &lt;br /&gt;les 10 et 11 septembre 2010 - 20h30 &lt;br /&gt;Th&#233;&#226;tre A L'Affiche &lt;br /&gt;110 avenue Jean Jaur&#232;s &lt;br /&gt;51100 Reims


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1270.png&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;219&quot; height=&quot;266&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Plus de 60 imitations chant&#233;es ou sketchs avec un guitariste&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Didier Gustin nous emm&#232;ne &#224; travers des chansons parodi&#233;es et des sketchs dans un univers m&#234;l&#233; d'humour et d'&#233;motions.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Un grand moment de bonheur et d'&#233;clats de rire &#224; d&#233;guster sans mod&#233;ration.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;les 10 et 11 septembre 2010 - 20h30&lt;/strong&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Th&#233;&#226;tre A L'Affiche
&lt;br /&gt;110 avenue Jean Jaur&#232;s &lt;br /&gt;51100 Reims
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2599, 4.04634), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1270}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Exposition : Peter Saville et Anna Blessmann au FRAC</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=997&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Exposition-Peter-Saville-et-Anna</guid>
		<dc:date>2010-04-04T16:35:32Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>10/09/2010 - 02/01/2011 &lt;br /&gt;Vernissage le jeudi 9 septembre. &lt;br /&gt;FRAC, 1 place Museux - REIMS &lt;br /&gt;Email &lt;br /&gt;www.frac-champagneardenne.org &lt;br /&gt;03 26 05 78 32


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1230.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;230&quot; height=&quot;175&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;10/09/2010 - 02/01/2011&lt;/strong&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Vernissage le jeudi 9 septembre.&lt;/p&gt; &lt;ul class=&quot;spip&quot;&gt;&lt;li class=&quot;spip&quot;&gt; FRAC, 1 place Museux - REIMS&lt;/li&gt;&lt;li class=&quot;spip&quot;&gt; &lt;a href=&quot;mailto:contact@frac-champagneardenne.org&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;spip&quot;&gt; &lt;a href=&quot;http://www.frac-champagneardenne.org&quot; class=&quot;spip_out&quot;&gt;www.frac-champagneardenne.org&lt;/a&gt;&lt;/li&gt;&lt;li class=&quot;spip&quot;&gt; 03 26 05 78 32 &lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2465, 4.04037), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1230}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Jeu de pistes : Raconte moi l'histoire de la Cath&#233;drale de Reims</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1260&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Jeu-de-pistes-Raconte-moi-l</guid>
		<dc:date>2010-09-03T08:41:15Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>La Jeune Chambre Economique de Reims organise une journ&#233;e festive pour raconter l'histoire de la Cath&#233;drale de Reims qui f&#234;tera ses 800 ans le 6 mai 2011. &lt;br /&gt;Rendez vous le Dimanche 11 Septembre &#224; partir de 14h sur le Parvis de la Cath&#233;drale pour un jeu de pistes sous forme d'&#233;nigmes. &lt;br /&gt;Le Jeu : constitu&#233; de quatorze &#233;nigmes autour de ce magnifique &#233;difice gothique. Ce concours &#233;nigmes d&#233;butera d&#232;s 14 heures par la d&#233;livrance d'un livret. Il finira &#224; 17 heures. La r&#233;solution de ces &#233;nigmes vous permettra de (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1462.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;428&quot; height=&quot;640&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;La Jeune Chambre Economique de Reims organise une journ&#233;e festive pour raconter l'histoire de la Cath&#233;drale de Reims qui f&#234;tera ses 800 ans le 6 mai 2011.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Rendez vous &lt;strong class=&quot;spip&quot;&gt;le Dimanche 11 Septembre &#224; partir de 14h&lt;/strong&gt; sur le Parvis de la Cath&#233;drale pour un jeu de pistes sous forme d'&#233;nigmes.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Le Jeu&lt;/strong&gt; : constitu&#233; de quatorze &#233;nigmes autour de ce magnifique &#233;difice gothique. Ce concours &#233;nigmes d&#233;butera d&#232;s 14 heures par la d&#233;livrance d'un livret. Il finira &#224; 17 heures. La r&#233;solution de ces &#233;nigmes vous permettra de vous promener dans et autour de la cath&#233;drale et de d&#233;couvrir ces principaux attraits ainsi que son histoire huit fois centenaire !&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Spectacle&lt;/strong&gt; :17 heures 30 &#224; 18 heures 30 - Yvan l'impossible jongleur &lt;a href=&quot;http://lezartshaches.blogspot.com/&quot; class=&quot;spip_out&quot;&gt;L&#233;z'Arts Hach&#233;s&lt;/a&gt; &lt;strong class=&quot;spip&quot;&gt;Pr&#233;sentation des m&#233;tiers d'art&lt;/strong&gt;:14 heures &#224; 17 heures 30&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Pour en savoir plus : &lt;a href=&quot;http://www.racontemoi-reimscathedrale.fr&quot; class=&quot;spip_out&quot;&gt;www.racontemoi-reimscathedrale.fr&lt;/a&gt; _ &lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2537, 4.03414), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1462}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Soir&#233;e Ambiance Br&#233;silienne &#224; l'Hippodrome</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1230&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Soiree-Ambiance-Bresilienne-a-l</guid>
		<dc:date>2010-08-25T09:02:41Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Soir&#233;e Ambiance Br&#233;silienne &#224; l'Hippodrome &lt;br /&gt;samedi 11 Septembre 2010 &#224; 19h00 &lt;br /&gt;3, Avenue du Pr&#233;sident Kennedy &lt;br /&gt;Tel : 03.26.08.65.29 &lt;br /&gt;www.hippodromedereims.com


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1438.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;205&quot; height=&quot;127&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Soir&#233;e Ambiance Br&#233;silienne &#224; l'Hippodrome&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;samedi 11 Septembre 2010&lt;/strong&gt; &#224; 19h00&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;3, Avenue du Pr&#233;sident Kennedy
&lt;br /&gt;Tel : 03.26.08.65.29
&lt;br /&gt;&lt;a href=&quot;http://www.hippodromedereims.com&quot; class=&quot;spip_out&quot;&gt;www.hippodromedereims.com&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2363, 4.01046), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1438}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Concerts Clavecin/Orgue - Op&#233;ra de Reims/ Basilique Saint R&#233;mi</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1163&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Concerts-Clavecin-Orgue-Opera-de</guid>
		<dc:date>2010-07-06T13:03:28Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>A l'occasion du 10&#232;me anniversaire des orgues Cattiaux l'Association Renaissance des Orgues de la Basilique Saint Remi et l'Op&#233;ra de Reims vous proposent un double R&#233;cital de Benjamin Alard &lt;br /&gt;R&#233;cital de Clavecin &#224; l'Op&#233;ra de Reims &lt;br /&gt;Bach et ses contemporains &lt;br /&gt;Samedi 11 septembre - 20h30 &lt;br /&gt;13 rue Chanzy - 51100 Reims &lt;br /&gt;R&#233;cital d'orgue &#224; la Basilique Saint Remi &lt;br /&gt;Bach et le dogme en musique &lt;br /&gt;Dimanche 12 septembre - 18h00 &lt;br /&gt;Rue Simon - Reims &lt;br /&gt;Tarifs &lt;br /&gt;20&#8364; les 2 concerts/13&#8364; par concert &lt;br /&gt;Dur&#233;e : 1 heure &lt;br /&gt;Location &#224; partir du (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;A l'occasion du 10&#232;me anniversaire des orgues Cattiaux l'Association
Renaissance des Orgues de la Basilique Saint Remi et l'Op&#233;ra de Reims
vous proposent un double R&#233;cital de Benjamin Alard&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;R&#233;cital de Clavecin &#224; l'Op&#233;ra de Reims&lt;/strong&gt;
&lt;br /&gt;Bach et ses contemporains
&lt;br /&gt;Samedi 11 septembre - 20h30
&lt;br /&gt;13 rue Chanzy - 51100 Reims&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;R&#233;cital d'orgue &#224; la Basilique Saint Remi&lt;/strong&gt;
&lt;br /&gt;Bach et le dogme en musique
&lt;br /&gt;Dimanche 12 septembre - 18h00
&lt;br /&gt;Rue Simon - Reims&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Tarifs
&lt;br /&gt;20&#8364; les 2 concerts/13&#8364; par concert &lt;br /&gt;Dur&#233;e : 1 heure
&lt;br /&gt;Location &#224; partir du 28 ao&#251;t&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;a href=&quot;http://www.operadereims.com/&quot; class=&quot;spip_out&quot;&gt;Site web&lt;/a&gt; pour en savoir plus
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2431, 4.04194), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1371}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Journ&#233;e Portes Ouvertes #6 &#224; Saint-Exup&#233;ry</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1245&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Journee-Portes-Ouvertes-6-a-Saint</guid>
		<dc:date>2010-08-29T15:42:43Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Con&#231;u comme un parcours ludique, ce RDV de la rentr&#233;e r&#233;moise, qui rassemble plus d'un millier de visiteurs, permet aussi de d&#233;couvrir le programme des 30 ateliers exp&#233;rimentaux du centre culturel Saint-Exup&#233;ry. Une trentaine d'animateurs, d'artistes et d'amis du centre proposeront de nombreuses surprises &#224; voir, &#224; vivre et &#224; produire. &lt;br /&gt;samedi 11 septembre 2010 &lt;br /&gt;14h &gt; 18h30 + inauguration du bar &#233;ph&#233;m&#232;re #3 + concert &lt;br /&gt;Tout le programme : (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1456.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;858&quot; height=&quot;1197&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Con&#231;u comme un parcours ludique, ce RDV de la rentr&#233;e r&#233;moise, qui rassemble plus d'un millier de visiteurs, permet aussi de &lt;strong class=&quot;spip&quot;&gt;d&#233;couvrir le programme des 30 ateliers exp&#233;rimentaux du centre culturel Saint-Exup&#233;ry&lt;/strong&gt;.
Une trentaine d'animateurs, d'artistes et d'amis du centre proposeront de nombreuses surprises &#224; voir, &#224; vivre et &#224; produire.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;
samedi 11 septembre 2010&lt;/strong&gt;
&lt;br /&gt;14h &gt; 18h30 + inauguration du bar &#233;ph&#233;m&#232;re #3 + concert&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Tout le programme : &lt;a href=&quot;http://www.saintex-reims.com/saintex.php&quot; class=&quot;spip_out&quot;&gt;www.saintex-reims.com&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2502, 3.98838), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1456}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>10 ans du Sentier du Vigneron</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=998&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/10-ans-du-Sentier-du-Vigneron</guid>
		<dc:date>2010-04-05T16:06:18Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>11/09/2010 &lt;br /&gt;Dans le village. &lt;br /&gt;MUTIGNY &lt;br /&gt;Email &lt;br /&gt;www.mutigny-en-champagne.com &lt;br /&gt;03 26 52 31 37


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1231.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;281&quot; height=&quot;217&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;strong class=&quot;spip&quot;&gt;11/09/2010&lt;/strong&gt; &lt;br /&gt;Dans le village.
&lt;br /&gt;MUTIGNY
&lt;br /&gt;&lt;a href=&quot;mailto:sentierduvigneron@orange.fr&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; &lt;br /&gt;&lt;a href=&quot;http://www.mutigny-en-champagne.com&quot; class=&quot;spip_out&quot;&gt;www.mutigny-en-champagne.com&lt;/a&gt;
&lt;br /&gt;03 26 52 31 37 &lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2502, 3.98838), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1231}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Place aux livres - Place du forum </title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=704&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Place-aux-livres-Place-du-forum</guid>
		<dc:date>2008-10-08T16:01:58Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Les bouquinistes et libraires de la r&#233;gion vous proposent livres d'occasion, rares ou anciens. &lt;br /&gt;le 2e dimanche du mois &lt;br /&gt;Place du Forum de 9h &#224; 17h &lt;br /&gt;Agenda 2010 : 10 janvier - 14 f&#233;vrier - 14 mars - 11 avril - 9 mai - 13 juin - 11 juillet - 8 ao&#251;t - 12 septembre - 10 octobre - 14 novembre - 12 d&#233;cembre &lt;br /&gt;Agenda 2011 : 9 janvier - 13 f&#233;vrier - 13 mars - 10 avril - 8 mai - 12 juin - 10 juillet - 14 ao&#251;t (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton791.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;352&quot; height=&quot;500&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Les bouquinistes et libraires de la r&#233;gion vous proposent livres d'occasion, rares ou anciens.&lt;/p&gt; &lt;ul class=&quot;spip&quot;&gt;&lt;li class=&quot;spip&quot;&gt; le 2e dimanche du mois&lt;/li&gt;&lt;li class=&quot;spip&quot;&gt; Place du Forum de 9h &#224; 17h&lt;/li&gt;&lt;/ul&gt;
&lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Agenda 2010&lt;/strong&gt; : 10 janvier - 14 f&#233;vrier - 14 mars - 11 avril - 9 mai - 13 juin - 11 juillet - 8 ao&#251;t - 12 septembre - 10 octobre - 14 novembre - 12 d&#233;cembre&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Agenda 2011&lt;/strong&gt; : 9 janvier - 13 f&#233;vrier - 13 mars - 10 avril - 8 mai - 12 juin - 10 juillet - 14 ao&#251;t ...&lt;/p&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Portes ouvertes &#224; l'&#233;cole du cirque de Muizon</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1243&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Portes-ouvertes-a-l-ecole-du</guid>
		<dc:date>2010-08-27T16:03:17Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>A l'occasion des journ&#233;es de la F&#233;d&#233;ration fran&#231;aise des &#233;coles de cirque, &#171; Ecoles en piste &#187;, l'&#233;cole de cirque Cheval Art Action (CAA) de Muizon ouvre gratuitement ses portes le dimanche 12 septembre &#224; partir de 15 heures avec au programme la visite des &#233;curies et des animaux de Cheval Art Action, un spectacle sous chapiteau pr&#233;sent&#233; par les stagiaires de la formation professionnelle de Cheval Art Action et rencontre avec les artistes, &#233;changes ludiques et fructueux&#8230; &lt;br /&gt;Acc&#232;s : RN 31 entre Muizon et (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;A l'occasion des journ&#233;es de la F&#233;d&#233;ration fran&#231;aise des &#233;coles de cirque, &#171; Ecoles en piste &#187;, &lt;strong class=&quot;spip&quot;&gt;l'&#233;cole de cirque Cheval Art Action (CAA) de Muizon ouvre gratuitement ses portes le dimanche 12 septembre &#224; partir de 15 heures&lt;/strong&gt; avec au programme la visite des &#233;curies et des animaux de Cheval Art Action, un spectacle sous chapiteau pr&#233;sent&#233; par les stagiaires de la formation professionnelle de Cheval Art Action et rencontre avec les artistes, &#233;changes ludiques et fructueux&#8230;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Acc&#232;s : RN 31 entre Muizon et Jonchery-sur-Vesle, puis prendre la route de Courcelles-Sapicourt.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Renseignement au 03.26.02.95.23 - &lt;a href=&quot;mailto:info@cheval-art-action.com&quot; class=&quot;spip_out&quot;&gt;Email&lt;/a&gt; - &lt;a href=&quot;http://www.cheval-art-action.com&quot; class=&quot;spip_out&quot;&gt;www.cheval-art-action.com&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2742, 3.86478), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1452}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>&quot;Deux visions de l'apocalypse&quot;</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=999&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Expositions-Deux-visions-de-l</guid>
		<dc:date>2010-04-05T16:16:16Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>

		<dc:subject>inclure-dans-la-lettre</dc:subject>

		<description>Le texte de l'Apocalypse est mis en images au mus&#233;e-H&#244;tel Le Vergeur gr&#226;ce &#224; deux artistes. L'un graveur sur bois, l'autre graveur sur lino. L'un du XV&#232;me si&#232;cle, l'autre du XXI&#232;me si&#232;cle. L'un s'appelle Albrecht D&#252;rer, l'autre Fr&#233;d&#233;ric Voisin. A travers deux regards distants de 500 ans, le visiteur suit le r&#233;cit du dernier livre de la Bible. &lt;br /&gt;14/09/2010 - 23/12/2010 Ouverture de 14h &#224; 18h &lt;br /&gt;tous les jours sauf le lundi &lt;br /&gt;Mus&#233;e-H&#244;tel Le Vergeur, 36 place du Forum - REIMS &lt;br /&gt;T&#233;l. :00 33 (0) 3 26 47 20 75 (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;

/ 
&lt;a href="http://www.escapade-champenoise.fr/+-inclure-dans-la-lettre-+" rel="tag"&gt;inclure-dans-la-lettre&lt;/a&gt;

		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1232.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;242&quot; height=&quot;170&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Le texte de l'Apocalypse est mis en images au mus&#233;e-H&#244;tel Le Vergeur gr&#226;ce &#224; deux artistes. L'un graveur sur bois, l'autre graveur sur lino. L'un du XV&#232;me si&#232;cle, l'autre du XXI&#232;me si&#232;cle. L'un s'appelle &lt;strong class=&quot;spip&quot;&gt;Albrecht D&#252;rer&lt;/strong&gt;, l'autre &lt;strong class=&quot;spip&quot;&gt;Fr&#233;d&#233;ric Voisin&lt;/strong&gt;. A travers deux regards distants de 500 ans, le visiteur suit le r&#233;cit du dernier livre de la Bible.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;14/09/2010 - 23/12/2010 &lt;/strong&gt; Ouverture de 14h &#224; 18h
&lt;br /&gt;tous les jours sauf le lundi&lt;/p&gt; &lt;ul class=&quot;spip&quot;&gt;&lt;li class=&quot;spip&quot;&gt; Mus&#233;e-H&#244;tel Le Vergeur, 36 place du Forum - REIMS
&lt;br /&gt;T&#233;l. :00 33 (0) 3 26 47 20 75
&lt;br /&gt;&lt;a href=&quot;mailto:museelevergeur@wanadoo.fr&quot; class=&quot;spip_out&quot;&gt;E-mail&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2571, 4.03431), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1232}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>15 septembre : Les fr&#232;res Bogdanov en d&#233;dicace &#224; Reims</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=921&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/vendredi-12-mars-Alain-Chamfort-en</guid>
		<dc:date>2010-03-10T08:47:44Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>A l'occasion de la sortie de &quot;Le visage de Dieu&quot; Igor et Grichka Bogdanov viendront d&#233;dicacer leur livre mercredi 15 septembre 2010. &lt;br /&gt;Rendez-vous chez &quot;Rose et son roman&quot; &#224; partir de 18h &lt;br /&gt;Rose et son roman. Librairie-caf&#233;-galerie &lt;br /&gt;76 rue Chanzy 51100 Reims &lt;br /&gt;Tel : 03.26.47.30.60.


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1149.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;185&quot; height=&quot;300&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;A l'occasion de la sortie de &lt;strong class=&quot;spip&quot;&gt;&quot;Le visage de Dieu&quot;&lt;/strong&gt; Igor et Grichka Bogdanov viendront d&#233;dicacer leur livre mercredi 15 septembre 2010.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Rendez-vous chez &lt;a href=&quot;http://roseetsonroman.canalblog.com/&quot; class=&quot;spip_out&quot;&gt;&quot;Rose et son roman&quot;&lt;/a&gt; &#224; partir de 18h&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Rose et son roman. Librairie-caf&#233;-galerie &lt;br /&gt;76 rue Chanzy 51100 Reims &lt;br /&gt;Tel : 03.26.47.30.60. &lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2518, 4.03296), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1149}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>Exp&#233;rience Pommery #8 : &quot;Nos meilleurs souvenirs&quot;</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1228&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/Experience-Pommery-8-Nos-meilleurs</guid>
		<dc:date>2010-08-25T08:49:53Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>Pour cette huiti&#232;me grande exposition d'art contemporain, R&#233;gis Durand s&#233;lectionne installations spectaculaires, images d'archives ou projections &#233;voquant les Nocturnes du festival. L'ensemble des oeuvres pr&#233;sent&#233;es auront pour point commun d'avoir subsist&#233; durablement dans la m&#233;moire de Nathalie et Paul-Fran&#231;ois Vranken. &lt;br /&gt;Du 15 septembre 2010 au 30 mars 2011 &lt;br /&gt;Domaine Pommery &lt;br /&gt;5, Place G&#233;n&#233;ral Gouraud - 51100 Reims &lt;br /&gt;ouvert tous les jours de 10h &#224; 18h &lt;br /&gt;R&#233;servation recommand&#233;e : (...)


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1436.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;238&quot; height=&quot;283&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;Pour cette huiti&#232;me grande exposition d'art contemporain, R&#233;gis Durand s&#233;lectionne installations spectaculaires, images d'archives ou projections &#233;voquant les Nocturnes du festival. L'ensemble des oeuvres pr&#233;sent&#233;es auront pour point commun d'avoir subsist&#233; durablement dans la m&#233;moire de Nathalie et Paul-Fran&#231;ois Vranken.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Du 15 septembre 2010 au 30 mars 2011&lt;/strong&gt;&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Domaine Pommery
&lt;br /&gt;5, Place G&#233;n&#233;ral Gouraud - 51100 Reims
&lt;br /&gt;ouvert tous les jours de 10h &#224; 18h
&lt;br /&gt;R&#233;servation recommand&#233;e : 03.26.61.62.56
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2441, 4.04965), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1436}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>




		
	<item>
		<title>La campagne &#224; la ville</title>
		
		
		<link>http://www.escapade-champenoise.fr/-Evenements-?id_evenement=1207&amp;annee=2010&amp;mois=09</link>
		
		
		<guid isPermaLink="true">http://www.escapade-champenoise.fr/La-campagne-a-la-ville</guid>
		<dc:date>2010-08-04T15:56:47Z</dc:date>
		<dc:format>text/html</dc:format>
		<dc:language>fr</dc:language>
		<dc:creator>v&#233;ronique</dc:creator>

<category domain="http://www.escapade-champenoise.fr/-Evenements-">Ev&#233;nements</category>


		<description>&quot;L'odyss&#233;e du bl&#233;, de la graine &#224; l'assiette&quot; : &lt;br /&gt;C'est le th&#232;me de cette 15&#232; &#233;dition. &lt;br /&gt;Du mercredi 15 au samedi 18 septembre &lt;br /&gt;Place d'Erlon &lt;br /&gt;Avec comme chaque ann&#233;e, des animations, des ateliers p&#233;dagogiques, des d&#233;gustations, rencontre avec les animaux de la ferme, concours de dessin...


-
&lt;a href="http://www.escapade-champenoise.fr/-Evenements-" rel="directory"&gt;Ev&#233;nements&lt;/a&gt;


		</description>


 <content:encoded>&lt;img src=&quot;http://www.escapade-champenoise.fr/SITES/escapade-champenoise.fr/IMG/arton1417.jpg&quot; alt=&quot;&quot; align=&quot;right&quot; width=&quot;100&quot; height=&quot;100&quot; class=&quot;spip_logos&quot; /&gt;
		&lt;div class='rss_texte'&gt;&lt;p class=&quot;spip&quot;&gt;&quot;L'odyss&#233;e du bl&#233;, de la graine &#224; l'assiette&quot; :
&lt;br /&gt;C'est le th&#232;me de cette 15&#232; &#233;dition.&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;&lt;strong class=&quot;spip&quot;&gt;Du mercredi 15 au samedi 18 septembre&lt;/strong&gt;
&lt;br /&gt;Place d'Erlon&lt;/p&gt; &lt;p class=&quot;spip&quot;&gt;Avec comme chaque ann&#233;e, des animations, des ateliers p&#233;dagogiques, des d&#233;gustations, rencontre avec les animaux de la ferme, concours de dessin...
&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;script type=&quot;text/javascript&quot;&gt; /** * @author Marco Alionso Ramirez, marco@onemarco.com * @version 1.0 * The Tooltip class is an addon designed for the Google * Maps GMarker class. */ /** * @constructor * @param {GMarker} marker * @param {String} content * @param {Number} padding */
function Tooltip(marker, content, padding){ this.marker = marker; this.content = content; this.padding = padding; this.div = null; this.map = null;
} Tooltip.prototype = new GOverlay(); Tooltip.prototype.initialize = function(map){ this.div = document.createElement(&quot;div&quot;); var innerContainer = this.div.cloneNode(false); this.div.appendChild(innerContainer); this.div.style.position = 'absolute'; this.div.style.visibility = 'hidden'; this.shadowQuadrants = [{},{},{},{}] this.shadowQuadrants[0].div = document.createElement('div'); this.shadowQuadrants[0].div.style.position = 'absolute'; this.shadowQuadrants[0].div.style.overflow = 'hidden'; this.shadowQuadrants[0].img = createPngElement('plugins/googlemap_api/img_pack/tooltip_shadow.png'); this.shadowQuadrants[0].img.style.position = 'absolute'; this.shadowQuadrants[0].div.appendChild(this.shadowQuadrants[0].img); this.shadowQuadrants[1].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[1].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[1].div.appendChild(this.shadowQuadrants[1].img); this.shadowQuadrants[2].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[2].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[2].div.appendChild(this.shadowQuadrants[2].img); this.shadowQuadrants[3].div = this.shadowQuadrants[0].div.cloneNode(false); this.shadowQuadrants[3].img = this.shadowQuadrants[0].img.cloneNode(true); this.shadowQuadrants[3].div.appendChild(this.shadowQuadrants[3].img); this.shadowQuadrants[0].div.style.right = '0px'; this.shadowQuadrants[0].div.style.top = '0px'; this.shadowQuadrants[0].img.style.top = '0px'; this.shadowQuadrants[0].img.style.right = '0px'; this.shadowQuadrants[1].div.style.left = '0px'; this.shadowQuadrants[1].div.style.top = '0px'; this.shadowQuadrants[1].img.style.top = '0px'; this.shadowQuadrants[2].div.style.left = '0px'; this.shadowQuadrants[2].div.style.bottom = '0px'; this.shadowQuadrants[2].img.style.bottom = '0px'; this.shadowQuadrants[2].img.style.left = '0px'; this.shadowQuadrants[3].div.style.right = '0px'; this.shadowQuadrants[3].div.style.bottom = '0px'; this.shadowQuadrants[3].img.style.bottom = '0px'; this.shadow = this.div.cloneNode(false); this.shadow.appendChild(this.shadowQuadrants[0].div); this.shadow.appendChild(this.shadowQuadrants[1].div); this.shadow.appendChild(this.shadowQuadrants[2].div); this.shadow.appendChild(this.shadowQuadrants[3].div); innerContainer.className = 'tooltip'; var child = typeof this.content == 'string' ? document.createTextNode(this.content) : this.content; innerContainer.appendChild(child); map.getPane(G_MAP_FLOAT_PANE).appendChild(this.div); map.getPane(G_MAP_MARKER_SHADOW_PANE).appendChild(this.shadow); this.map = map;
} Tooltip.prototype.remove = function(){ this.div.parentNode.removeChild(this.div);
} Tooltip.prototype.copy = function(){ var content = typeof this.content == 'string' ? this.content : this.content.cloneNode(true); return new Tooltip(this.marker,content,this.padding);
} Tooltip.prototype.redraw = function(force){ if (!force) return; //draw tooltip var markerPos = this.map.fromLatLngToDivPixel(this.marker.getPoint()); var iconAnchor = this.marker.getIcon().iconAnchor; var xPos = Math.round(markerPos.x - this.div.clientWidth / 2); var yPos = markerPos.y - iconAnchor.y - this.div.clientHeight - this.padding; this.div.style.top = yPos + 'px'; this.div.style.left = xPos + 'px'; //draw shadow //calculate shadow location shadowAnchor = new GPoint( markerPos.x + Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) , markerPos.y - Math.round((this.marker.getIcon().iconSize.height + this.padding) / 2) + 4); //calculate shadow dimenstions var shadowSize = new GSize(this.div.clientWidth + Math.round(this.div.clientHeight / 2) + 8, Math.round(this.div.clientHeight / 2) + 10); if(shadowSize.width % 2 == 1) shadowSize.width--; if(shadowSize.height % 2 == 1) shadowSize.height--; //apply shodaw location and dimensions this.shadow.style.left = (shadowAnchor.x - (shadowSize.width - shadowSize.height - 10 )/ 2) + 'px'; this.shadow.style.top = (shadowAnchor.y - shadowSize.height) + 'px'; this.shadow.style.width = (shadowSize.width) + 'px'; this.shadow.style.height = shadowSize.height + 'px'; //get quadrant dimensions var qHeight = shadowSize.height / 2; var qOddWidth = shadowSize.height &gt; shadowSize.width ? shadowSize.height / 2: (shadowSize.width) / 2; var qEvenWidth = shadowSize.width - qOddWidth; //apply quadrant dimensions, calculate and apply Q2 and Q4 image offsets this.shadowQuadrants[0].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[0].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[1].div.style.height = qHeight + 'px'; this.shadowQuadrants[1].img.style.left = -(160 - shadowSize.height) + 'px'; this.shadowQuadrants[2].div.style.width = qOddWidth + 'px'; this.shadowQuadrants[2].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].div.style.width = qEvenWidth + 'px'; this.shadowQuadrants[3].div.style.height = qHeight + 'px'; this.shadowQuadrants[3].img.style.right = -(160 - shadowSize.height) +'px'; } Tooltip.prototype.show = function(){ this.div.style.visibility = 'visible'; this.shadow.style.visibility = 'visible';
} Tooltip.prototype.hide = function(){ this.div.style.visibility = 'hidden'; this.shadow.style.visibility = 'hidden';
} //utility function for png compatibility in IE6
var IS_IE = false;
var IS_LT_IE7;
//@cc_on IS_IE = true;
//@cc_on IS_LT_IE7 = @_jscript_version &lt; 5.7; function createPngElement(src){ var img = document.createElement('img'); img.setAttribute('src',src); if(IS_IE &amp;&amp; IS_LT_IE7){ img.style.visibility = 'hidden'; var div = document.createElement('div'); div.appendChild(img); div.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + src + '\',sizingMethod=\'crop\')'; return div; } return img; } &lt;/script&gt; &lt;script type=&quot;text/javascript&quot;&gt; if (document.namespaces) { // only needed in IE document.namespaces.add(&quot;v&quot;, &quot;urn:schemas-microsoft-com:vml&quot;); } //&lt;![CDATA[ URLbase = &quot;http://www.escapade-champenoise.fr/&quot;; var map1; var markerManager1; var gdir; //UN CALCUL D'ITINERAIRE PAR POINT var latitude; var lonxitude; function load1() { if (GBrowserIsCompatible()) { //ITINERAIRES(CA C'ETAIT AVANT LE DRAME....) //createpanel(); // facelo mapa map1= new GMap2(document.getElementById(&quot;map1&quot;)); map1.addControl(new mapTypeControl()); map1.addControl(new mapZoomControl()); map1.addControl(new mapMoveControl()); map1.setCenter(new GLatLng(49.2557, 4.02688), 10, G_NORMAL_MAP); center = map1.getCenter(); map1.enableDoubleClickZoom(); map1.enableContinuousZoom(); markerManager1= new GMarkerManager(map1); //leemo-lo documento dos marcadores $.get('http://www.escapade-champenoise.fr/spip.php?page=rss-gis', {id_rubrique:14, id_article:1417}, function(xml1){ //xml almacena en un objeto xml los datos recogidos del documento leido $(&quot;item&quot;, xml1).each(function(item1){; //alert(&quot;ici&quot;); var xmlItem1= xml1.documentElement.getElementsByTagName(&quot;item&quot;)[item1]; agregarMarcador(xmlItem1, 0, 0, markerManager1); }); markerManager1.refresh(); //map1.openInfoWindow(map1.getCenter(),contidosHTML[1]); }); gdir = new GDirections(map1,document.getElementById(&quot;panel&quot;)); GEvent.addListener(gdir, &quot;load&quot;, onGDirectionsLoad); GEvent.addListener(gdir, &quot;error&quot;, onGDirectionsError); } } //IMPLEMENTE LA FONTION QUI CREE UN ITINERAIRE
function makemyitin(){ if(document.getElementById(&quot;panel&quot;)){ setDirections(document.getElementById(&quot;panel_from&quot;).value,latitude+&quot; , &quot;+ lonxitude); }
} function onGDirectionsLoad(){
//alert(&quot;ca charge&quot;);
} function onGDirectionsError(){
alert(&quot;erreur :&quot;+gdir.getStatus().code);
} function setDirections(fromAddress, toAddress) { geocoder = new GClientGeocoder(); geocoder.getLatLng(fromAddress, function(point) { if (point) { //alert(point); // Yipeeee! gdir.load(&quot;from: &quot; + point.toUrlValue() + &quot; to: &quot; + toAddress , { &quot;locale&quot;: &quot;fr_FR&quot; }); } else { alert (fromAddress + &quot; est inconnu!! &quot;); } }); } //CREATE A PANEL WHERE WE CAN SEE A DIRECTION
function createpanel()
{
/*if(!document.getElementById(&quot;rechercheItin&quot;)){ var map1=document.getElementById(&quot;map1&quot;); var recherche=document.createElement(&quot;div&quot;); recherche.setAttribute(&quot;id&quot;,&quot;rechercheItin&quot;); recherche.style.visibility = &quot;hidden&quot;; map1.parentNode.insertBefore(recherche,map1); var panel=document.createElement(&quot;div&quot;); panel.setAttribute(&quot;id&quot;,&quot;panel&quot;); panel.style.width = &quot;100%&quot;; panel.style.visibility = &quot;hidden&quot;; if(map1.nextSibling!=null){ map1.parentNode.insertBefore(panel,map1.nextSibling); } else{ map1.appendChild(panel); } document.getElementById(&quot;rechercheItin&quot;).innerHTML= '&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; value=&quot;votre point de depart&quot; onclick=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; /&gt;&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot;&gt;Calculer&lt;/a&gt;'; }*/ }
function showpanel(lat,lonx)
{ document.getElementById(&quot;panel&quot;).style.display= &quot;block&quot;; //alert(&quot;coucou10&quot;); document.getElementById(&quot;rechercheItin&quot;).style.display = &quot;block&quot;; //alert(&quot;coucou11&quot;); latitude = lat; lonxitude = lonx; } $(document).ready(function(){ load1(); }) //]]&gt; &lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt;
.tooltip{ background-color:white; border:solid 2px black; padding:4px;
}
&lt;/style&gt;
&lt;div id=&quot;rechercheItin&quot; style=&quot;display:none&quot;&gt;
&lt;input type=&quot;text&quot; id=&quot;panel_from&quot; onfocus=&quot;if(this.value=='votre point de depart'){this.value='';}&quot; value=&quot;votre point de depart&quot; /&gt;
&lt;a href=&quot;http://www.escapade-champenoise.fr/#&quot; onclick=&quot;makemyitin();return false;&quot; onfocus=&quot;this.value='';&quot;&gt;Calculer&lt;/a&gt;
&lt;/div&gt;
&lt;div id=&quot;map1&quot; style=&quot;width: 100%;height:400px;&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;panel&quot; style=&quot;display:none;&quot;&gt; &lt;/div&gt;&lt;/div&gt;
		
		</content:encoded>


		

	</item>





</channel>

</rss>
