
			<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":1985,"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-03T14:26:25","modified_gmt":"2018-04-03T12:26:25","slug":"autour-de-vous","status":"publish","type":"page","link":"https:\/\/www.hotellapaix.com\/eu\/autour-de-vous\/","title":{"rendered":"Animazioak"},"content":{"rendered":"<p>[vc_row bg_type=&#8221;bg_color&#8221; bg_color_value=&#8221;#f5f5f5&#8243;][vc_column]<div class=\"ult-spacer spacer-69f3069839d5a\" data-id=\"69f3069839d5a\" 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-607169f3069839e50\" class=\"uvc-heading ult-adjust-bottom-margin ultimate-heading-607169f3069839e50 uvc-1063 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-607169f3069839e50 h2'  data-responsive-json-new='{\"font-size\":\"desktop:25px;\",\"line-height\":\"\"}' ><h2 style=\"font-family:'Poppins';font-weight:600;color:#3d3935;\">Gure ingurruan atsemaiten ahal dituzuen aktibitateak<\/h2><\/div><div class=\"uvc-sub-heading ult-responsive\"  data-ultimate-target='.uvc-heading.ultimate-heading-607169f3069839e50 .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;\">Egonaldi labur edo luze batentzat, Donapaleu eta bere eskualdeak proposatzen dizkizue aktibitateak familia guzientzat.<\/p>\n<p><\/div><\/div><\/div><div class=\"ult-spacer spacer-69f3069839e66\" data-id=\"69f3069839e66\" 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-162318844669f3069839f9d\" class=\"ult-carousel-wrapper  slider_type1 ult_horizontal\" data-gutter=\"0\" data-rtl=\"false\" ><div class=\"ult-carousel-169097499169f3069839f44 \" ><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-3365680769\"> \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 > Pilota partida<\/h2>\n\t\t\t\t\t\n\t\t\t<p><span>Uda guzian, asteazken arratsalde guziz, Donapaleuko plazan (hoteletik 150 metrotan) pilota partidak ikusten ahalko dituzue. Aukera ezin hobea talo baten jateko.<\/span><\/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-1922996903\"> \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 >Euskal dantzak<\/h2>\n\t\t\t\t\t\n\t\t\t<p><span>Ostegun gau eguzkitsuetan, gure ostatuko terrazatik euskal dantza ikusgarriak ikusteko aukera ukanen duzue. Bainan ez bakarrik, iniziatzea ere proposatua izanen zaizue.<\/span><\/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-1893148316\"> \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 >Donapaleuko merkatua<\/h2>\n\t\t\t\t\t\n\t\t\t<p style=\"font-weight: 400;\">Badu mendeak eta mendeak ostiral goiz guziz Donapaleuko merkatua egiten dela. Amikuze euskaldeko mozkinak erosteko parada ukanen duzue giro alai eta herrikoian. Gasna, ogia, zonbait gosoki, fruitu eta barazkiak, xerriki, jantzi, lore&#8230;denetarik atsemaiten ahal da.\u00a0<span>Eguberri garraian, abenduaren 26 an, zaldien feria egiten da Amikuzeko abere merkatu plazan.<\/span><\/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-269822490\"> \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 >Xiba jokoak<\/h2>\n\t\t\t\t\t\n\t\t\t<p><span>Hitz ordu nagusiak ditugu hauek\u00a0: Uztaila bukuaeran xuri eta urdinez, herriko pestak ospatzen ahal dira. Ondotik, Agorrilaren 15 etik landa, igandez, xiba jokoen festival handi bat pasastzen da.<\/span><\/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-452446716\"> \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 >Kaputxinada<\/h2>\n\t\t\t\t\t\n\t\t\t<p><span>Lannes en Baretous, Landibarre eta ingurruko bazteretan urtxo ihizia egiten da. Ondotik, Donapaleuko erretzeko manera berezia \u00ab\u00a0Kaputxinada\u00a0\u00bb egiten dute ostalariek. Omiasaindu inguruan, Amikuzeko urtsoa dastatzeko aukera ona duzue\u00a0!!!<\/span><\/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-2865518427\"> \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 >Garruzeko feria<\/h2>\n\t\t\t\t\t\n\t\t\t<p><span>Euskal Herriko, Garruze herriko zaldiki eta behikien feria uztaila eta agorrilan.<\/span><\/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-1899313333\"> \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 >Espartinaren besta<\/h2>\n\t\t\t\t\t\n\t\t\t<p style=\"font-weight: 400;\">Horregatik, pesta egunean, plaza nagusian fabrikazio tailer bat instalatua da, nun ekoizpen prozesu guzia ikusten ahal duzuen. Tokiko mozkinak, dantza, kanta eta pilota partidak espartinaren eguna alaitzen dituzte.<\/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-3824851413\"> \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 >Poteoa<\/h2>\n\t\t\t\t\t\n\t\t\t<p><span>Ostatuz ostatu egiten den tradizioa. Kantu bat emaiteko parada, arno baso eta pintxo bat jateko artean.<\/span><\/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-3313356524\"> \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 > Donapaleuko igerilekua<\/h2>\n\t\t\t\t\t\n\t\t\t<p><span>Udan, egunero idekia den Donapaleuko igerilekua.<\/span><\/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-169097499169f3069839f44').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-69f306983b4bf\" data-id=\"69f306983b4bf\" 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=\"1985\" \/><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-1985","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/pages\/1985","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/comments?post=1985"}],"version-history":[{"count":3,"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/pages\/1985\/revisions"}],"predecessor-version":[{"id":2066,"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/pages\/1985\/revisions\/2066"}],"wp:attachment":[{"href":"https:\/\/www.hotellapaix.com\/eu\/wp-json\/wp\/v2\/media?parent=1985"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}