
			<script type="text/javascript">
	
				jQuery(document).ready(function($) { 		
				
					var map_id = 'initial';
					
					if(typeof _CSPM_DONE === 'undefined' || _CSPM_DONE[map_id] === true) 
						return;
					
					_CSPM_DONE[map_id] = false;
					_CSPM_MAP_RESIZED[map_id] = 0;
					
					/**
					 * Start displaying the Progress Bar loader */
					 
					if(typeof NProgress !== 'undefined'){
						
						NProgress.configure({
						  parent: 'div#codespacing_progress_map_div_'+map_id,
						  showSpinner: true
						});				
						
						NProgress.start();
						
					}
					
					/**
					 * @map_layout, Will contain the layout type of the current map.
					 * This variable was first initialized in "progress_map.js"!
					 * @since 2.8 */
										
					map_layout[map_id] = 'mu-cd';

					/**
					 * @infobox_xhr, Will store the ajax requests in order to test if an ajax request ... 
					 * ... will overide "an already sent and non finished" request */
					
					var infobox_xhr; 
					
					/**
					 * @cspm_bubbles, Will store the marker bubbles (post_ids) in the viewport of the map */
					 
					cspm_bubbles[map_id] = []; 
					
					/**
					 * @cspm_child_markers, Will store the status of markers in order to define secondary markers from parent markers */
					 					 
					cspm_child_markers[map_id] = []; 
					
					/**
					 * Will store all the current ajax request (for infoboxes) in order to execute them when they all finish */
					
					cspm_requests[map_id] = []; 
									
					/**
					 * @post_ids_and_categories, Will store the markers categories in order to use with faceted search and to define the marker icon */
					 
					post_ids_and_categories[map_id] = {}; 
					
					/** 
					 * @post_lat_lng_coords, Will store the markers coordinates in order to use them when rewriting the map & the carousel */
					 
					post_lat_lng_coords[map_id] = {}; 
					
					/**
					 * @post_ids_and_child_status, Will store the markers and their child status in order to use when rewriting the carousel */
					 
					post_ids_and_child_status[map_id] = {}; 
					
					/**
					 * @json_markers_data, Will store the markers objects */
					 
					var json_markers_data = [];

					/**
					 * init plugin map */
					 
					var plugin_map_placeholder = 'div#codespacing_progress_map_div_'+map_id;
					var plugin_map = $(plugin_map_placeholder);
					
					/**
					 * Load Map options */
					 
											var map_options = cspm_load_map_options(false, null, 12);
										
					/**
					 * Activate the new google map visual */
					 
					google.maps.visualRefresh = true;				

					/**
					 * The initial map style */
					 
					var initial_map_style = "custom_style";
					
					/**
					 * Enhance the map option with the map type id of the style */
					 
					 
											
						/**
						 * The initial style */
						 
						var map_type_id = cspm_initial_map_style(initial_map_style, true);
			
						/**
						 * Map type control option */
						 
						var mapTypeControlOptions = {mapTypeControlOptions: {
														position: google.maps.ControlPosition.TOP_RIGHT,
														mapTypeIds: [google.maps.MapTypeId.ROADMAP,
																	 google.maps.MapTypeId.SATELLITE,
																	 google.maps.MapTypeId.TERRAIN,
																	 google.maps.MapTypeId.HYBRID,
																	 "custom_style"]				
													}};
													
						var map_options = $.extend({}, map_options, map_type_id, mapTypeControlOptions);
						
									
	
										
					/**
					 * The carousel dimensions & style */
					 
										
						var item_width = parseInt(454);										
						var item_height = parseInt(150);
						var item_css = "";
						var items_background  = "#fff";
						
										
					 var light_map = false; 	
					var infobox_div = $('div.cspm_infobox_container.cspm_infobox_'+map_id);			
					var show_infobox = 'true';
					var infobox_type = 'cspm_type1';
					var infobox_display_event = 'onhover';
					var useragent = navigator.userAgent;
					var infobox_loaded = false;
					var clustering_method = false;
					var remove_infobox_on_mouseout = 'false';
											
					/**
					 * [@polyline_values] - will store an Object of all available Polylines	
					 * [@polygon_values] - will store an Object of all available Polygons					 					 
					 * @since 2.7 */
					 
					var polyline_values = [];
					var polygon_values = [];
					
										
								
					/**
					 * Build the map */
					 				
					plugin_map.gmap3({	
						map:{
							options: map_options,							
							onces: {
								tilesloaded: function(map){
																		
									var carousel_output = []; 

									plugin_map.gmap3({ 										
										marker:{
											values: json_markers_data,
											callback: function(markers){
												 
																								
												/**
												 * Build the carousel items */
												 
												if(!light_map){
													
													for(var i = 0; i < markers.length; i++){	

														var post_id = markers[i].post_id;
														var is_child = markers[i].is_child;
														var marker_position = markers[i].position;
														
														/**
														 * Convert the LatLng object to array */
														 
														var lat = marker_position.lat();
														var lng = marker_position.lng();											
													
														/**
														 * Create carousel items */
														 
														carousel_output.push('<li id="'+map_id+'_list_items_'+post_id+'" class="'+post_id+' carousel_item_'+(i+1)+'_'+map_id+' cspm_border_radius cspm_border_shadow" data-map-id="'+map_id+'" data-is-child="'+is_child+'" name="'+lat+'_'+lng+'" value="'+(i+1)+'" data-post-id="'+post_id+'" style="width:'+item_width+'px; height:'+item_height+'px; background-color:'+items_background+'; '+item_css+'">');
															carousel_output.push('<div class="cspm_spinner"></div>');							
														carousel_output.push('</li>');
														
														if(i == markers.length-1){
															$('ul#codespacing_progress_map_carousel_'+map_id).append(carousel_output.join(''));	
															cspm_init_carousel(null, map_id);
														}
														
													}																						
																																					
												}	
												
																																													
												
											},											
											events:{
												mouseover: function(marker, event, elements){
													
													/**
													 * Display the single infobox */
													 
													if(show_infobox == 'true' && infobox_display_event == 'onhover')
														infobox_xhr = cspm_draw_single_infobox(plugin_map, map_id, infobox_div, infobox_type, marker, infobox_xhr, 'yes');
													
																										
														/**
														 * Apply the style for the active item in the carousel */
														 
														if(!light_map){	
															
															var post_id = marker.post_id;
															var is_child = marker.is_child;	
															var i = $('li[id='+map_id+'_list_items_'+post_id+'][data-is-child="'+is_child+'"]').attr('value');	
															
															cspm_call_carousel_item($('ul#codespacing_progress_map_carousel_'+map_id).data('jcarousel'), i);
															cspm_carousel_item_hover_style('li.carousel_item_'+i+'_'+map_id, map_id);
														
														}
													
																										
												},	
												mouseout: function(marker, event, elements){

													/**
													 * Hide the infobox */
													 
													if(show_infobox == 'true' && (infobox_display_event == 'onhover' || infobox_display_event == 'onclick') && remove_infobox_on_mouseout == 'true'){
														
														infobox_div.addClass('cspm_animated fadeOutUp');					
														infobox_div.hide().removeClass('cspm_animated fadeOutUp');
														
													}
													
												},
												click: function(marker, event, elements){
													
													var latLng = marker.position;											

													/**
													 * Center the map on that marker */
													
													map.panTo(latLng);
													
													cspm_pan_map_to_fit_infobox(plugin_map, map_id, infobox_div);													
															
													/**
													 * Display the single infobox */
													 
													if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event == 'onclick'){
														setTimeout(function(){																										
															infobox_xhr = cspm_draw_single_infobox(plugin_map, map_id, infobox_div, infobox_type, marker, infobox_xhr, 'yes');
														}, 400);
													}
													
																			
													
														/**
														 * Apply the style for the active item in the carousel */
														 
														if(!light_map){	
															
															var post_id = marker.post_id;
															var is_child = marker.is_child;
															var i = $('li[id='+map_id+'_list_items_'+post_id+'][data-is-child="'+is_child+'"]').attr('value');
														
															cspm_call_carousel_item($('ul#codespacing_progress_map_carousel_'+map_id).data('jcarousel'), i);
															cspm_carousel_item_hover_style('li.carousel_item_'+i+'_'+map_id, map_id);
														
														}
													
																										
																										
												}
											}
										}
									});									
									
																			clustering_method = true;
										var clusterer = cspm_clustering(plugin_map, map_id, light_map);										$('div.codespacing_map_zoom_in_'+map_id+', div.codespacing_map_zoom_out_'+map_id).show(); 									
									/**
									 * Draw infoboxes (onload event) */
									 
									if(json_markers_data.length > 0 && clustering_method == true && show_infobox == 'true' && infobox_display_event == 'onload'){			
										
										google.maps.event.addListenerOnce(clusterer, 'clusteringend', function(cluster) {																	
											setTimeout(function(){
												cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
												infobox_loaded = true;
											}, 1000);																
										});	
										
									}else if(json_markers_data.length > 0 && clustering_method == false && show_infobox == 'true' && infobox_display_event == 'onload'){
										
										setTimeout(function(){
											cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
											infobox_loaded = true;
										}, 1000);
										
									}else if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event != 'onload'){
										
										infobox_loaded = true;
											
									}
									
									/**
									 * End the Progress Bar Loader */
									 	
									if(typeof NProgress !== 'undefined')
										NProgress.done();
									
								}
								
							},
							events:{
								click: function(){

									/**
									 * Remove single infobox on map click (onclick, onhover events) */
									 
									if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event != 'onload'){										
										infobox_div.hide();
										infobox_div.one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){
											infobox_div.hide().removeClass('cspm_animated fadeOutUp');
										});
									}
									
								},
								idle: function(){								
									if(infobox_loaded && !cspm_is_panorama_active(plugin_map)){
										setTimeout(function(){
											if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event == 'onload'){								
												cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
											}
										}, 200);
									}
								},				
								bounds_changed: function(){
									if(json_markers_data.length > 0){
										if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event != 'onload'){
											cspm_set_single_infobox_position(plugin_map, infobox_div);
										}else $('div.cspm_infobox_container').hide();
									}
								},
								drag: function(){
									if(json_markers_data.length > 0){
										if(show_infobox == 'true' && infobox_display_event != 'onload'){
											cspm_set_single_infobox_position(plugin_map, infobox_div);
										}else $('div.cspm_infobox_container').hide();
									}
								},
								center_changed: function(){
									setTimeout(function() {
										$('div[class^=cluster_posts_widget]').removeClass('flipInX');
										$('div[class^=cluster_posts_widget]').addClass('cspm_animated flipOutX');
										setTimeout(function() {
											if(typeof $('div.cluster_posts_widget_'+map_id).mCustomScrollbar === 'function'){
												$('div.cluster_posts_widget_'+map_id).mCustomScrollbar("destroy");
											}
										}, 500);
									}, 500);
								}
							}
						},					
						
												
												
												 
												
												 
						 
														
							styledmaptype:{
								id: "custom_style",
								options:{
									name: "Simple Labels",
									alt: "Show Simple Labels"
								},
								styles: [{"featureType":"road","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"poi","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"transit","elementType":"labels.text","stylers":[{"visibility":"off"}]}]							},
							
												 
							
										
					});		
					
					/**
					 * Hide/Show UI Controls depending on the streetview visibility */
					
					var mapObject = plugin_map.gmap3('get');
					
					if(typeof mapObject.getStreetView === 'function'){
												
						var streetView = mapObject.getStreetView();
					
						google.maps.event.addListener(streetView, "visible_changed", function(){
							
							if(this.getVisible()){
								
																	$('div.codespacing_map_zoom_in_'+map_id+', div.codespacing_map_zoom_out_'+map_id).hide();
																 
																 
																 
																
								$('div.cspm_infobox_container').hide();
								 
														
							}else{
								 
																	$('div.codespacing_map_zoom_in_'+map_id+', div.codespacing_map_zoom_out_'+map_id).show();
																 
																 
																 
																 
														
								if(json_markers_data.length > 0 && infobox_loaded){
									setTimeout(function(){
										if(show_infobox == 'true' && infobox_display_event == 'onload'){								
											cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
										}
									}, 200);
								}
							}
								
						});
						
					}
					 		
										
															
						/**
						 * Call zoom-in function */
						 
						cspm_zoom_in($('div.codespacing_map_zoom_in_'+map_id), plugin_map);
					
						/**
						 * Call zoom-out function */
						 
						cspm_zoom_out($('div.codespacing_map_zoom_out_'+map_id), plugin_map); 					
										 
											
						/**
						 * Store the window width */
						
						var windowWidth = $(window).width();
	
						$(window).resize(function(){
							
							/**
							 * Check window width has actually changed and it's not just iOS triggering a resize event on scroll */
							 
							if ($(window).width() != windowWidth) {
					
								/**
								 * Update the window width for next time */
								 
								windowWidth = $(window).width();
			
								setTimeout(function(){
									
									var latLng = new google.maps.LatLng (43.327854, -1.034582);							
								
									var map = plugin_map.gmap3("get");	
									
									if(typeof map.panTo === 'function')
										map.panTo(latLng);
									
									if(typeof map.setCenter === 'function')
										map.setCenter(latLng);
										
								}, 500);
								
							}
							
						});

					 
					 
										 
											
					_CSPM_DONE[map_id] = true;
	
				});
			
			</script> 
			
			{"id":1987,"date":"2017-04-05T18:14:00","date_gmt":"2017-04-05T16:14:00","guid":{"rendered":"http:\/\/www.hotellapaix.com\/autour-de-vous\/"},"modified":"2018-04-03T15:03:31","modified_gmt":"2018-04-03T13:03:31","slug":"autour-de-vous","status":"publish","type":"page","link":"https:\/\/www.hotellapaix.com\/en\/autour-de-vous\/","title":{"rendered":"ACTIVITIES"},"content":{"rendered":"<p>[vc_row bg_type=&#8221;bg_color&#8221; bg_color_value=&#8221;#f5f5f5&#8243;][vc_column]<div class=\"ult-spacer spacer-69e835f92f37f\" data-id=\"69e835f92f37f\" data-height=\"40\" data-height-mobile=\"40\" data-height-tab=\"\" data-height-tab-portrait=\"50\" data-height-mobile-landscape=\"40\" style=\"clear:both;display:block;\"><\/div><div class=\"ult-animation  ult-animate-viewport  ult-no-mobile \" data-animate=\"bounceIn\" data-animation-delay=\"0.3\" data-animation-duration=\"1\" data-animation-iteration=\"1\" style=\"opacity:0;\" data-opacity_start_effect=\"100\"><div id=\"ultimate-heading-869269e835f92f4bd\" class=\"uvc-heading ult-adjust-bottom-margin ultimate-heading-869269e835f92f4bd uvc-3134 set_max_width\" data-hspacer=\"icon_only\"  data-halign=\"center\" style=\"text-align:center\"><div class=\"uvc-heading-spacer icon_only\" style=\"margin-bottom:10px;\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\">\n<div class=\"aio-icon none \"  style=\"font-size:26px;display:inline-block;\">\n\t<i class=\"icomoon-8\"><\/i>\n<\/div><\/div><\/div><\/div><div class=\"uvc-main-heading ult-responsive\"  data-ultimate-target='.uvc-heading.ultimate-heading-869269e835f92f4bd h2'  data-responsive-json-new='{\"font-size\":\"desktop:25px;\",\"line-height\":\"\"}' ><h2 style=\"font-family:'Poppins';font-weight:600;color:#3d3935;\">Activities in our area<\/h2><\/div><div class=\"uvc-sub-heading ult-responsive\"  data-ultimate-target='.uvc-heading.ultimate-heading-869269e835f92f4bd .uvc-sub-heading '  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  style=\"font-family:'Poppins';font-weight:normal;color:#9c9c9c;margin-top:6px;\"><\/p>\n<p style=\"text-align: center;\">However long or short your stay, Saint Palais and its surrounding area has a great selection of activities for all the family\u2026<\/p>\n<p><\/div><\/div><\/div><div class=\"ult-spacer spacer-69e835f92f4d4\" data-id=\"69e835f92f4d4\" data-height=\"73\" data-height-mobile=\"73\" data-height-tab=\"73\" data-height-tab-portrait=\"\" data-height-mobile-landscape=\"50\" style=\"clear:both;display:block;\"><\/div><div class=\"arrowpress-container container \"><div id=\"ult-carousel-101812999869e835f92f62c\" class=\"ult-carousel-wrapper  slider_type1 ult_horizontal\" data-gutter=\"0\" data-rtl=\"false\" ><div class=\"ult-carousel-44695809869e835f92f5da \" ><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-1251343128\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/Chistera.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >A Game of Pelote<\/h2>\n\t\t\t\t\t\n\t\t\t<p>During the summer months, games of Basque Pelote are played every Wednesday afternoon on the Fronton (the pitch designed especially for the game) 150 metres from the Hotel. Also take the opportunity to come and taste the famous traditional \u2018Talo\u2019.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-1233976650\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/initiation-danse-basque.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Basque Dance<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Every Thursday evening in the summer, around 9pm, demonstrations of traditional Basque Dancing are held on the main square. Come and relax on the sunny terrace at the hotel bar and enjoy the show. You can even join in and learn a few steps of L\u2019Euskal Dantza\u2019 (The Basque Dance)!<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-659514856\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/19237867_1457846920944961_3453772363376083913_o.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Saint Palais Market<\/h2>\n\t\t\t\t\t\n\t\t\t<p>This centuries- old traditional and animated livestock market takes place every Friday morning. You will find all sorts of local cheeses, organic breads, pastries, fruit and vegetables, Fairtrade products, cold meats, flowers and clothing\u2026 in a colourful and convivial atmosphere. At Christmas time, the Horse Show takes place on the morning of 26<sup>th<\/sup> December on the Esplanade d\u2019Amikuze.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-479622269\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/saintpalais4.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Force Basque<\/h2>\n\t\t\t\t\t\n\t\t\t<p>At one of the most important dates in the celebrations calendar you will be able to participate in the Fete de Bayonne, which takes place at the end of July. Arguably the most important event- \u2018La Force Basque\u2019 happens on the first Sunday following the 15<sup>th<\/sup> August.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-1286813120\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/image.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Capucinade<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Come and discover ancient Pigeon net hunting at Lanne en Baretous, Lantabat\u2026 and afterwards taste the delicacy &#8211; Pigeon with Nasturtium, cooked in a special way particular to Saint Palais.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-3158500182\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/foire2.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >The Garris Show<\/h2>\n\t\t\t\t\t\n\t\t\t<p>In July and August come and experience the Horse show and Bovine show in Garris, in the Basque Country.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-2174618422\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/DSC_0035.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >The Espadrilles Festival<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Espadrilles take centre stage in Maul\u00e9on! A production workshop is set up on the main square where you can see what is involved in sewing together these shoes made from rope.<br \/>\nA farmers\u2019 market, local dance performances, singing and even some Basque \u2018Pelote\u2019 come together to make this day festival in Maul\u00e9on.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-203333903\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/Chistera-1.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Poteo<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Songs and a great atmosphere in St Palais.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-179063111\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/piscine.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >\u2018Donaiki\u2019 Outdoor Swimming Pool in St Palais<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Outdoor pool open every day in the summer months.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><\/div><\/div>\t\t\t<script type=\"text\/javascript\">\n\t\t\t\tjQuery(document).ready(function ($) {\n\t\t\t\t\t$('.ult-carousel-44695809869e835f92f5da').slick({dots: true,autoplay: true,autoplaySpeed: 5000,speed: 300,infinite: true,arrows: true,nextArrow: '<button type=\"button\" role=\"button\" aria-label=\"Next\" style=\"color:#333333; font-size:20px;\" class=\"slick-next default\"><i class=\"ultsl-arrow-right\"><\/i><\/button>',prevArrow: '<button type=\"button\" role=\"button\" aria-label=\"Previous\" style=\"color:#333333; font-size:20px;\" class=\"slick-prev default\"><i class=\"ultsl-arrow-left\"><\/i><\/button>',slidesToScroll:1,slidesToShow:1,swipe: true,draggable: true,touchMove: true,pauseOnHover: true,responsive: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t  breakpoint: 1025,\n\t\t\t\t\t\t\t  settings: {\n\t\t\t\t\t\t\t\tslidesToShow: 1,\n\t\t\t\t\t\t\t\tslidesToScroll: 1,  \n\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t  breakpoint: 769,\n\t\t\t\t\t\t\t  settings: {\n\t\t\t\t\t\t\t\tslidesToShow: 1,\n\t\t\t\t\t\t\t\tslidesToScroll: 1\n\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t  breakpoint: 481,\n\t\t\t\t\t\t\t  settings: {\n\t\t\t\t\t\t\t\tslidesToShow: 1,\n\t\t\t\t\t\t\t\tslidesToScroll: 1\n\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t],pauseOnDotsHover: true,customPaging: function(slider, i) {\n                   return '<i type=\"button\" style=\"color:#333333;\" class=\"ultsl-record\" data-role=\"none\"><\/i>';\n                },});\n\t\t\t\t});\n\t\t\t<\/script>\n\t\t\t<\/div>\n<div class=\"ult-spacer spacer-69e835f93083d\" data-id=\"69e835f93083d\" data-height=\"126\" data-height-mobile=\"70\" data-height-tab=\"\" data-height-tab-portrait=\"\" data-height-mobile-landscape=\"70\" style=\"clear:both;display:block;\"><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]<div class=\"codespacing_progress_map_area\" data-map-id=\"initial\" data-show-infobox=\"true\" data-infobox-display-event=\"onhover\" style=\"width:100%; height:620px;\"><input type=\"hidden\" name=\"cspm_map_page_id_initial\" id=\"cspm_map_page_id_initial\" value=\"1987\" \/><div class=\"row\" style=\"margin:0; padding:0;\"><div class=\"col-lg-12 col-xs-12 col-sm-12 col-md-12\" style=\"position:relative; overflow:hidden; margin:0; padding:0;\"><div id=\"pulsating_holder\" class=\"initial_pulsating\"><div class=\"dot\"><\/div><\/div><div class=\"cspm_infobox_container cspm_border_shadow cspm_infobox_single cspm_infobox_initial cspm_type1\" style=\"width:380px; height:120px;\" data-move-carousel=\"true\" data-infobox-link-target=\"new_window\"><div class=\"blue_cloud\"><\/div><div class=\"cspm_arrow_down cspm_type1\"><\/div><\/div><div class=\"codespacing_zoom_container\"><div class=\"codespacing_map_zoom_in_initial cspm_zoom_in_control cspm_border_shadow cspm_border_top_radius\" title=\"Zoom in\"><img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/plugins\/codespacing-progress-map\/img\/addition-sign.png\" \/><\/div><div class=\"codespacing_map_zoom_out_initial cspm_zoom_out_control cspm_border_shadow cspm_border_bottom_radius\" title=\"Zoom out\"><img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/plugins\/codespacing-progress-map\/img\/minus-sign.png\" \/><\/div><\/div><div class=\"cluster_posts_widget_initial cspm_border_shadow\"><div class=\"blue_cloud\"><\/div><\/div><div id=\"codespacing_progress_map_div_initial\" style=\"height:442px;\"><\/div><\/div><\/div><div class=\"row\" style=\"margin:0; padding:0\"><div id=\"codespacing_progress_map_carousel_container\" data-map-id=\"initial\" class=\"col-lg-12 col-xs-12 col-sm-12 col-md-12\" style=\"margin:0; padding:0; height:auto;\"><ul id=\"codespacing_progress_map_carousel_initial\" class=\"jcarousel-skin-default\" style=\"height:158px;\"><\/ul><\/div><\/div><\/div>[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row bg_type=&#8221;bg_color&#8221; bg_color_value=&#8221;#f5f5f5&#8243;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1987","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/pages\/1987","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/comments?post=1987"}],"version-history":[{"count":3,"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/pages\/1987\/revisions"}],"predecessor-version":[{"id":2126,"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/pages\/1987\/revisions\/2126"}],"wp:attachment":[{"href":"https:\/\/www.hotellapaix.com\/en\/wp-json\/wp\/v2\/media?parent=1987"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}