<!DOCTYPE html>
<!-- G:\InternetDev\pcmenu\universal\house\homepage.cfm --> 
<!-- G:\InternetDev\pcmenu\go\partials\fatty_finn\topArea.cfm -->
<html lang="en"> <head>
				<meta charset="utf-8">
				<meta http-equiv="X-UA-Compatible" content="IE=edge">

				
					<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1" />
				<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> 
					<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
				

				<script type="text/javascript" src="https://imgathena.mallfinder.com/images/js/utils/common.js"></script>

				
<!-- you are on the vpn, so this is not cached info -->
<link rel="stylesheet" href="/css/house@Namdar/main-v1672861543297.css">              
					 <script>
							$('document').ready(function(){
								const siteUrl = window.location.hostname;
								// https://stackoverflow.com/questions/41321515/script438-error-in-internet-explorer-11
					      const links = Array.prototype.slice.call(document.querySelectorAll("a"), 0);

					     	links.forEach(function(element) {
					     		if ( element.href == "" || element.href.indexOf("javascript") > -1){
					     			return;
					     		}
					    		// For special cases - such as shop now - not for casual use
					     		else if ( element.href.indexOf(siteUrl.replace("www.", "")) > -1 ) {
					     			return;
					     		}
					     		else if ( element.href.indexOf(siteUrl) > -1 ) { 
										if ( element.target.indexOf("javascript") > -1 || element.target.charAt(0) == "#" ) {
											return;
										}
										else {
											element.target = "";
										} 
					     		}
					     		else {
					     			element.target = "_blank";
					     			element.rel = "noopener";
					     		}
					     	});    
					    });
					 	</script>         
				
					<!-- accessibility styles -->
					<style>
						:focus {outline:0;}
						/* this causes movement in some browsers div.menu ul li:focus-within, button:focus { filter:brightness(120%); } */
						a:focus, button:focus { text-decoration:underline; }
						div.menu ul li:focus-within ul { visibility: visible; opacity: 1;}
						/* this causes movement in some browsers, too a:focus * { filter:brightness(110%); }*/
					</style>
    				
    					<script>
							$(document).ready(function() {
								$('img.svg').each(function(){
									var img_tag = $(this);
									//Remove class name so other script does not touch 
									img_tag.removeClass("svg");
		
									var imgID = img_tag.attr('id');
									var imgClass = img_tag.attr('class');
									var imgURL = img_tag.attr('src');
									var img_alt = img_tag.attr('alt');
									var img_title = img_tag.attr('title');
									var img_role = img_tag.attr('role');

									$.get(imgURL, function(data) {
										var svg = $(data).find('svg');

										if(img_alt) {
											svg = svg.attr('alt', img_alt);
											var aria_html = $('<span class="visually-hidden">' + img_alt + '</span>')
										}

										if(img_title) {
											svg = svg.attr('title', img_title);
										}

										if(img_role) {
											svg = svg.attr('role', img_role);
										}

										if(imgID) {
											svg = svg.attr('id', imgID);
										}

										if(imgClass) {
											svg = svg.attr('class', imgClass+' replaced-svg');
										}

										svg = svg.removeAttr('xmlns:a'); // Remove any invalid XML tags as per http://validator.w3.org

										if(aria_html) {
											aria_html.insertAfter(img_tag);
										}

										//replace image with new svg 
										img_tag.replaceWith(svg);

									}, 'xml');
								});
							});
						</script>
					

				<!-- this head tag brought to you by Namdar.com.house@Namdar.design, a standard. -->
			
<script>
					$(document).on('pw:place_flyouts', function(e) { 
						if ($('.my-mall').length === 1 && $('.my-mall').parents('.my-mall-injection').length) {
							$($('.my-mall-injection').html()).insertAfter('header[role=banner] > .container:first-of-type');
						}
						$('.my-mall-injection').remove();
					});
				</script>

<script type="text/javascript">
				
		function SEWsearchFormSubmit(terms) {
			console.log('2022m')
			terms = terms.replace(/[^a-zÀ-ÿ0-9 ]/gi, '')
			terms = terms.replace(/(^\s+|\s+$)/g, '')
			terms = terms.replace(/\s+/g, '%20')
			console.log(terms)
			if(terms.length > 2) window.location.href = `https://${window.location.hostname}/search/all/${terms}/?q=${terms}`;
		}
	

				var close_mymall_timeout;
				var close_search_timeout;

				function open_my_mall() {
					$(".my-mall").stop().css({ 'display': 'block'}).show().animate({ opacity: 1 });
					$(".my-mall").addClass('active');
				}
				function close_my_mall() {
					$(".my-mall").stop().css({ 'display': 'none'}).hide().animate({ opacity: 0 });
					$(".my-mall").removeClass('active');
				}
				function open_search() {
					$('.search-container .SEWsearchForm').stop().slideDown();
					$('.header-banner > .search-container').stop().animate({top: '100%'}, 333);
					if(window.search_slide) {
						window.search_slide.stop().animate({top: '100%'}, 333);
					}
				}
				function close_search() {
					
					if($(".header-banner input[type=search]").is(":focus") || (window.search_slide && window.search_slide.find('input[type=search]').is(":focus"))) {
						console.log('no close because focus.')
						close_search_timeout = setTimeout(close_search, 2000);
						return
					}
					$('.search-container .SEWsearchForm').stop().slideUp();
					$('.header-banner > .search-container').stop().animate({top: '0%'}, 333);
					if(window.search_slide) {
						window.search_slide.stop().animate({top: '0%'}, 333);
					}
				}

				$(document).on('pw:place_flyouts', function(e) { console.log(e.type)});
				$(function() {
					$(document).trigger('pw:place_flyouts');

					$(".SEWsearchForm input.search-field").keydown(function(e) {
						if(e.keyCode == 13) {
							var field = $(e.target);
							SEWsearchFormSubmit(field.val());
							return false;
						}
					});
					$(".SEWsearchForm button.search-submit").click(function(e) {
						var field = $(e.target).parent().find("input.search-field");
						SEWsearchFormSubmit(field.val());
					});



					// Prevent blur from blocking click on mobile
					$('.pwofile-placard a').mousedown(function(e) {
						e.preventDefault();
					})

					// hover on desktop, or click on devices, or focus for readers
					$(".open-my-mall").on('mouseenter click focus', function(e) {
						var width = $(window).width();
						if (width < window.mediumBreakPoint) {
							if (e.type === 'click') {
								console.log('click', $('.my-mall').hasClass('active'));
								if ($('.my-mall').hasClass('active')) {
									close_my_mall();
								} else {
									open_my_mall();
								}
							}
						} else {
							open_my_mall();
						}
						clearTimeout(close_mymall_timeout);
						close_search();
					}).mouseleave(function(e){
						close_mymall_timeout = setTimeout(close_my_mall, 2000);
					}).on('blur', close_my_mall);


					$('.my-mall').on('mouseenter', function(e) {
						clearTimeout(close_mymall_timeout);
						open_my_mall();
					}).mouseleave(function(e){
						close_mymall_timeout = setTimeout(close_my_mall, 2000);
					}).on('blur', close_my_mall);

					$('.search-container .SEWsearchForm, .header-banner > .search-container, .search-icon').on('mouseenter click focus', function(e) {
						// console.log(e.type, e.target);
						clearTimeout(close_search_timeout);
						open_search();
						close_my_mall();
					}).mouseleave(function(e){
						// console.log(e.type, e.target);
						close_search_timeout = setTimeout(close_search, 2000);
					}).on('blur', function(e){
						// console.log(e.type, e.target);
						// close_search()
						close_search_timeout = setTimeout(close_search, 2000);
					});
					if(window.search_slide) {
						window.search_slide.on('blur mouseleave', function(){
							close_search_timeout = setTimeout(close_search, 2000);
						})
					}

					$('.search-container').on('mouseenter', function(e) {
						clearTimeout(close_search_timeout);
					});

					$('.open-panel').on('click', function() {
						close_search();
						close_my_mall();
						clearTimeout(close_search_timeout);
						clearTimeout(close_mymall_timeout);
					});

					$(".open-my-mall, .search-icon").click(function() {
						if($('html').hasClass('open-nav')) {
							$('html').removeClass('open-nav');
							$('.open-panel').removeClass('active');
						}
					});

					$('nav.primary ul.primary > li > a > span').on('mouseenter', function() {
						close_search();
						close_my_mall();
					})
				});
			</script>

<script>

				$(document).on('pw:place_flyouts', function(e) {
					console.log($('.search-container').length, $('.search-container').parents('.search-injection').length, 'header[role=banner] > .container:first-of-type', 'insertAfter')
					if ($('.search-container').length === 1 && $('.search-container').parents('.search-injection').length) {
						$($('.search-injection').html()).insertAfter('header[role=banner] > .container:first-of-type');
						console.log('done')
					}
					$('.search-injection').remove();
				});
			</script>

<script type="text/javascript">
	              $(document).on('pw:logged_out', function() {
	                  $('.email_signup_widget_v1 button').each(function(){$(this).html($(this).attr('data-up-text'))});
	                  $('.email_signup_widget_v1').show(500);
	                  $('.email_signup_widget_v1 button.email_widget_submit').click(function(e){
	                      var target = $(this);
	                      var container = target.closest('.email_signup_widget_v1');
	                      if(container.hasClass('processing')) return;

	                      var input = container.find('input[name=email_widget_email]');
	                      var email = input.val();
	                      var messages_element = container.find('.email_signup_messages');
	                      console.log(email);
	                      var email_signup_error_message = 'Please enter a valid email address.';
	                      if(email.length > 6) {
	                          if(email.indexOf('@') == -1) {
	                              messages_element.html(email_signup_error_message).addClass('error').removeClass('success').show(500);
	                              return;
	                          }

	                          // begin ajax transaction
	                          container.addClass('processing');
	                          target.attr('disabled', 'disabled');
	                          target.html(target.attr('data-down-text'));

	                          var data = {};

	                          if (!!email) data.email = email;
	                          data.opt_into_default_email_programs = true;
	                          data.signup_code = container.find('input[name=signup_code]').val();

	                          pw_profile.client.magic_link(data).then(function(response) {
	                              container.removeClass('processing');
	                              target.removeAttr('disabled');
	                              target.html(target.attr('data-up-text'));

	                              // Remove inputs?
	                              input.attr('disabled', 'disabled');
	                              input.remove();
	                              target.attr('disabled', 'disabled');
	                              target.remove();
	                              messages_element.addClass('success').removeClass('error').html('Success! Check your email to confirm your account').show(500);
	                              input.val('');
	                          }).fail(function(error) {
	                              $('[name=email_widget_email]', container).val('Please try again later.');
	                              $('button', container).html($(this).attr('data-error-text'));
	                          }).always(function() {
	                              container.removeClass('processing')
	                          });
	                      }
	                  });
	              }).on('pw:logged_in', function() {
	                  $('[name=email_widget_email]').val(pw_profile.client.session('email'))
	                  $('.email_signup_widget_v1 button').each(function(){$(this).html($(this).attr('data-up-text'))});
	                  $('.email_signup_widget_v1').show(500);
	                  $('.email_signup_widget_v1 button.email_widget_submit').click(function(e){
	                      var target = $(this);
	                      var container = target.closest('.email_signup_widget_v1');
	                      var messages_element = container.find('.email_signup_messages');
	                      var input = container.find('input[name=email_widget_email]');
	                      var message = container.find('.logged-in-message').html();

	                      // Remove inputs?
	                      input.attr('disabled', 'disabled');
	                      input.remove();
	                      target.attr('disabled', 'disabled');
	                      target.remove();
	                      messages_element.addClass('success').removeClass('error').html(message).show(500);
	                      input.val('');
	                  });
	              })
	              if(typeof $ == 'function') {
	                  $(function(){
	                      $('.email_signup_widget_v1 button').each(function() {
	                          $(this).html($(this).attr('data-up-text'))
	                      });
	                  });
	              }
	          </script>

<!-- sgomhtml-->
				<script>
					$(document).on('pw:operational_message_opening', function(e, w) {
						var checkHeight = function() { return $(".operationalMessage").outerHeight(true); }
						var wrapper = $(".outer-wrapper");
						var wrapperStartPadding = parseInt(wrapper.css("padding-top"));
						var banner = $("header[role='banner']");
						var bannerStartTop = parseInt(banner.css("top"));

						setInterval(function () {
							wrapper.css({ "padding-top": wrapperStartPadding + checkHeight() });
							// extra logic for fixed headers/banners
							if ("top" === "top") {
								if (banner.css('position') === 'fixed') {
									banner.css({ "top": checkHeight() });
								} else {
									banner.css({ "top": bannerStartTop });
								}
							}
						}, 331);

						window.onresize = adjust_anchor_positions;
						adjust_anchor_positions();
					});

					function adjust_anchor_positions() {
						var op_mess = $('.operationalMessage').length ? $('.operationalMessage').first() : false;
						if(op_mess) {
							const h = op_mess.outerHeight() + 10
							$('a.anchor').css({
								"display": 'block',
								"padding-top": h + 'px',
								"margin-top": '-' + h + 'px'
							})
						}
					}
				</script>
				<style>
					.operationalMessage .opmessage-content .message {font-family:sans-serif;font-size:13px;font-weight:normal;color:white;}
				</style>
				


				
				
				      <style>
					      .operationalMessage .opmessage-content .message span {font-family:sans-serif;}
					      .operationalMessage .opmessage-content .message a {font-family:sans-serif;color:white;text-decoration:underline;}
				      </style>

<style> 
                    .operationalMessage{
                        background-color:#c72626;
                    }
                    .operationalMessage .opmessage-content .message {
                            width: 100%;
                    }
                    .operationalMessage .opmessage-content .message span,
                    .operationalMessage .opmessage-content .message span p {
                        font-family:sans-serif;
                        font-size: 18px;
                    }
                    .operationalMessage .opmessage-content .message a {
                        font-family:sans-serif;
                        font-weight: normal;
                        color:white;
                        text-decoration:underline;
                    }
                    @media screen and (max-width: 600px){
                        .operationalMessage{
                            padding: 1rem;
                        }
                        .operationalMessage .opmessage-content .message {
                            width: 100%;
                            padding: 0;
                        }
                        .operationalMessage .opmessage-content .message span {
                            font-size: 16px;
                        }
                        .operationalMessage .opmessage-content svg{
                            float: left;
                            margin-right: 1rem;
                            height: 25px;
                            width: auto;
                        }
                    }
                </style>
                <script>
                    $(document).on('pw:operational_message_opening pw:operational_message_open', function(e, w) {
                        console.log(e.type);
                    });
                    $(function() {
                        $.get('/live_update/op_mess/', function(res) {
                            // console.log('res', res);
                            var container = $('.opmessage-injection');
                            var config = $(container).data('config') || {};
                            var content = res.op_mess[config['content']] || '';

                            container = $(container)
                            .css({ 'position': config["position"] })
                            .css({
                                'z-index': config["zindex"],
                                'top': config["top"],
                                'left': config["left"],
                                'bottom': config["bottom"],
                                'right': config["right"]
                            })
                            .removeClass('opmessage-injection')
                            .addClass('operationalMessage')
                            .detach();

                            if (content.length) {
                                container.find('.message span').html(content);

                                if ($(config["attach_point"]).length) {
                                    container
                                    [config["attach_method"]](
                                        config["attach_point"]
                                    )
                                    $(document).trigger('pw:operational_message_opening', config);
                                    container
                                    [config["reveal_method"]](
                                        config["reveal_speed"],
                                        function() {
                                            $(document).trigger('pw:operational_message_open', config);
                                        }
                                    );
                                }
                            }
                        });
                    });
                </script>

<script src="https://cdn.placewise.com/assets/js/vendor/slick/v1.8.1/slick.min.js"></script>

<meta name="description" content="Conestoga Mall is a regional shopping center serving the growing market of central Nebraska. Anchor stores include Best Buy, Dillards, JC Penney, Younkers and AMC Theatre.">

<title>Conestoga Mall ::: Grand Island ::: NE</title>
<meta property="business:contact_data:country_name" content="United States" />
<meta property="business:contact_data:locality" content="Grand Island" />
<meta property="business:contact_data:postal_code" content="68803" />
<meta property="business:contact_data:region" content="NE" />
<meta property="business:contact_data:street_address" content="3404 W. 13th Street" />
<meta property="og:description" content="Conestoga Mall is a regional shopping center serving the growing market of central Nebraska. Anchor stores include Best Buy, Dillards, JC Penney, Younkers and AMC Theatre." />
<meta property="og:image" content="https://www.shopconestogamall.com/mimages/house@Namdar/mall-sharing.jpg" />
<meta property="og:image:secure_url" content="https://www.shopconestogamall.com/mimages/house@Namdar/mall-sharing.jpg" />
<meta property="og:site_name" content="Conestoga Mall" />
<meta property="og:title" content="Conestoga Mall" />
<meta property="og:type" content="business.business" />
<meta property="og:url" content="http://www.shopconestogamall.com/" />
<script type='application/ld+json'>{"potentialAction":{"target":"http://www.shopconestogamall.com/search/all/{search_term}","@type":"SearchAction","query-input":"required name=search_term"},"@context":"http://schema.org/","priceRange":"$$","telephone":"+13083827463","sameAs":["https://www.facebook.com/ConestogaMall","https://www.instagram.com/shopconestogamall/","https://www.twitter.com/shopconestoga/"],"openingHoursSpecification":[{"dayOfWeek":["Monday"],"@type":"OpeningHoursSpecification","opens":"10am - 8pm"},{"dayOfWeek":["Tuesday"],"@type":"OpeningHoursSpecification","opens":"10am - 8pm"},{"dayOfWeek":["Wednesday"],"@type":"OpeningHoursSpecification","opens":"10am - 8pm"},{"dayOfWeek":["Thursday"],"@type":"OpeningHoursSpecification","opens":"10am - 8pm"},{"dayOfWeek":["Friday"],"@type":"OpeningHoursSpecification","opens":"10am - 8pm"},{"dayOfWeek":["Saturday"],"@type":"OpeningHoursSpecification","opens":"10am - 8pm"},{"dayOfWeek":["Sunday"],"@type":"OpeningHoursSpecification","opens":"Noon - 6pm"}],"contactPoint":{"telephone":"+13083827463","@type":"contactPoint","contactType":"Customer Service","email":"office@shopconestogamall.com"},"logo":"https://images.shoptopia.com/mcache/420/mallLogos/conestoga.png","url":"http://www.shopconestogamall.com/","name":"Conestoga Mall","geo":{"@type":"GeoCoordinates","longitude":-98.3810792,"latitude":40.9343942},"description":"Conestoga Mall is a regional shopping center serving the growing market of central Nebraska. Anchor stores include Best Buy, Dillards, JC Penney, Younkers and AMC Theatre.","hasMap":"http://www.shopconestogamall.com/directions/","@type":"ShoppingCenter","address":{"postalCode":"68803","addressRegion":"NE","@type":"PostalAddress","streetAddress":"3404 W. 13th Street","addressLocality":"Grand Island","addressCountry":"United States"},"@id":"http://www.shopconestogamall.com/"}</script>

<script type="text/javascript">
	              function handle_email_widget_v2_submit(e) {
	                  e.preventDefault();
	                  var target = $(e.target);
	                  var email = target.find('input[name=email_widget_email]').val();
	                  var container = target.closest('.email_signup_widget_v2');
	                  var higher_container = target.closest('.omodal-container');

	                  if(higher_container.length) {
	                      container = higher_container;
	                  }

	                  if(container.hasClass('processing')) return;
	                  container.addClass('processing')
	                  var data = {};
	                  if (!!email) data.email = email;
	                  data.opt_into_default_email_programs = true;
	                  data.signup_code = target.find('input[name=signup_code]').val();

	                  pw_profile.client.magic_link(data).then(function(response) {
	                      var alt_container = container.siblings('.omodal-container-success');
	                      var success_html = $('.email_signup_success', container).clone(true, true);
	                      if(alt_container.length) {
	                          container.remove();
	                          alt_container.find('.omodal-body').html(success_html.html());
	                          alt_container.addClass('omodal-container');
	                          alt_container.css('display', 'block');
	                      } else {
	                          container.html('<!-- was successful -->').append(success_html);
	                          success_html.show(500);
	                      }

												

	                  }).fail(function(error) {
	                      $('[name=email_widget_email]', container).val('Please try again later.');
	                      $('button', container).html($(this).attr('data-error-text'));
	                  }).always(function() {
	                      container.removeClass('processing')
	                  });
	              }

	              function handle_email_widget_v2_logged_in_submit(e) {
	                  e.preventDefault();
	                  var target = $(e.target);
	                  var email = target.find('input[name=email_widget_email]').val();
	                  var container = target.closest('.email_signup_widget_v2');
	                  var higher_container = target.closest('.omodal-container');

	                  if(higher_container.length) {
	                      container = higher_container;
	                  }

	                  var message = $('.logged-in-message', container).clone(true, true);

	                  var alt_container = container.siblings('.omodal-container-success');
	                  console.log('alt-container.length',alt_container.length)
	                  console.log('message', message.html());
	                  if(alt_container.length) {
	                      container.remove();
	                      alt_container.find('.omodal-body').html(message.html());
	                      alt_container.addClass('omodal-container');
	                      alt_container.css('display', 'block');
	                  } else {
	                      container.html('<!-- was successful -->').append(message);
	                      message.show(500);
	                  }
	              }

	              $(document).on('pw:logged_out', function() {
	                  $('input[name=email_widget_email]').closest('form').on('submit', handle_email_widget_v2_submit);
	              }).on('pw:logged_in', function() {
	                  $('[name=email_widget_email]').val(pw_profile.client.session('email'))
	                  $('input[name=email_widget_email]').closest('form').on('submit', handle_email_widget_v2_logged_in_submit);
	              })

	              if(typeof $ == 'function') {
	                  $(function(){
	                      $('.email_signup_widget_v2 button').each(function() {
	                          $(this).html($(this).attr('data-up-text'))
	                      });
	                      $('input[name=email_widget_email]')
	                      .closest('form')
	                      .on('submit', function(e) { e.preventDefault(); });
	                  });
	              }
	          </script>

<style>
						.omodal {
							display: none;
						}
					</style>
				

				
				<script src="https://mallimages.mallfinder.com/js/omodal/v1.1.1/omodal.js" defer></script>

				<script>
					$(function() {
						omodal = new OneModal();
						$('.omodal-close, .omodal-overlay').click(omodal.handle_modal_close_click);
						$(document).keyup(function (e) {
							var current_modal = omodal.currently_open_ids.length > 0 && omodal.currently_open_ids[omodal.currently_open_ids.length - 1];
							if (e.which === '27' || e.which === 27) {
								if (!!current_modal && current_modal.indexOf('-gate') < 0) {
									$(document).trigger('pw:omodal_close', { id: current_modal })
								}
							}
						});

						
						
							// yesap
							
							
									// rank: 1, delay: 1209600000ms
									
										// profiley
										if( ! readCookie('user_has_ever_logged_in')) {
											$(document).one('pw:logged_out', function() {
												omodal.open_once_per_milliseconds('standard-email_signup_modal_v7', 1209600000);
											});
										}
									
						
						$('.trigger-omodal').each(function() {
							$(this).click(function(){omodal.open($(this).attr('data-trigger-omodal-id'))});
						});
					});
				</script>

<!-- Google Tag Manager -->

<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5376MBZ');</script>

<!-- End Google Tag Manager --> 
<!-- google analytics (universal type which expires in June of this year). -->

<script>
	(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
	(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
	m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
	})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); // stuff

	
	ga('create', 'UA-16546876-1', 'auto', 'universal');
	
	ga('create', 'UA-115457582-37', 'auto', 'property');
	
	ga(function() {
		var page = document.location.pathname;
		if(page.slice(-10) == '/index.cfm') {
			page = page.replace(/index.cfm$/, '');
		}

		var trackers = ga.getAll();
		
		trackers.forEach(function(tracker) {
			tracker.send('pageview', page);
		});
		
	});

	var pw_ga = {
		version: 1.0,
		add_event: function(options) {
			var eventCategory = options.category || '';
			var eventAction = options.action || '';
			var eventLabel = options.label || '';
			var eventValue = parseInt(options.value) || 0;
			var debug = options.debug || false;
			if(typeof eventValue != 'number') {
				eventValue = 0;
			}
			if(eventCategory.length < 3 || eventAction.length < 3) {
				console.log('no event tracking without category and action');
				return true; 
			}

			ga(function() {
				var trackers = ga.getAll();
				trackers.forEach(function(tracker) {
					if(debug) {
						console.log(`DEBUG ${tracker.get('name')} would track event: ${eventCategory}, ${eventAction}, ${eventLabel}, ${eventValue}`);
					} else {
						tracker.send('event', eventCategory, eventAction, eventLabel, eventValue);
					}
				});
			});
			return true; 
		},
		add_page_view: function(page) {
			var trackers = ga.getAll();
				trackers.forEach(function(tracker) {
				
				tracker.send('pageview', page);
			});
			return true; 
		}
	};
</script>



<script type="text/javascript">
	function groom_external_links(preview=false) {
		const r = /(^\s+|\s+$|[^a-z0-9 ’&\.\/:%\$]|click here to|click here|click to|here|www.|^(https?:)?\/\/|\/$)/gi; 
		$('a').each(function(index) {
			var a = $(this)
			if( ! a.attr('onclick') && ! a.attr('data-no-track')) {
				var href=a.attr('href')
				if(href) {
					if(href.substr(0, 4) == 'http' && href.indexOf('placewise.com') === -1 && href.indexOf('goo.gl') === -1 && href.indexOf('bit.ly') === -1) {
						if(href.indexOf(window.location.hostname) === -1 || href.indexOf(window.location.hostname) > window.location.hostname.length + 10) {
							if(preview) {
								a.css('background-color', 'olive')
							}

							href = href.replace(/(^(https?:)?\/\/|\/$)/g, ''); 

							var category = a.text();
							if(category) {
								category = category.replace(r, '');
							}
							if( ! category || category.length < 4) {
								category = a.attr("title");
							}
							if(category) {
								category = category.replace(r, '');
							}
							if( ! category || category.length < 4) {
								var img = a.find('img');
								if(img.attr('alt')) {
									category = img.attr("alt");
								}
							}
							if(category) {
								category = category.replace(r, '');
							}
							if( ! category || category.length < 4) {
								console.log('Could not find a category to use for event tracking on a link to ' + href)
								if(preview) {
									a.css('background-color', 'red') // bad link
								}
								return
							}
							
							category = category.replace(/(^\s+|\s+$)/g, '');

							var options = {
								
								action: 'click',
								category: category,
								label: href
							}

							

							a.click(function(){pw_ga.add_event(options)});

						
						}
					
					}
				
				}
			
			}
		})
	}

	$(function() {
		groom_external_links();
	})
</script> 
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P96XJ06HPY"></script>
<script>
	window.dataLayer = window.dataLayer || [];
	function gtag(){dataLayer.push(arguments);}
	gtag('js', new Date());
	gtag('config', 'G-P96XJ06HPY', { 'groups': ["master"] }); // pw_master
	gtag('config', 'G-4QKSRD7MD3', { 'groups': ["actual"] }); // property

</script>
<!-- END Global site tag (gtag.js) -->

<script src="https://cdn.placewise.com/assets/js/vendor/lodash/v3.8.0/lodash.min.js"></script>

<script src="https://cdn.placewise.com/assets/js/vendor/moment/v2.24.0/moment.min.js"></script>

<!-- Placewise Profile M2 -->
					<style>.pwofile-glass {color: transparent; text-shadow: rgba(0,0,0,.3) 0 0 2px; filter: blur(5px);}.omodal.pwofile-required-fields-modal .omodal-container .omodal-footer {display:block!important;text-align:center;}</style>

					
					

					<!-- tagstagstags -->
					
						<!-- v1.3.1 -->
						<script type="text/javascript" src="https://imgathena.mallfinder.com/images/js/md5/v1.2.1/jQuery.md5.js"></script>
						<script type="text/javascript" src="https://mallimages.mallfinder.com/images/js/pwofile_no_password/pw_client.js"></script>
						<script type="text/javascript" src="https://mallimages.mallfinder.com/images/js/pwofile_no_password/pw_profile_view.js"></script>
						<script type="text/javascript" src="https://mallimages.mallfinder.com/images/js/pwofile_no_password/profile.js"></script>
						

					<script>
						$(function() {
							var pw_profile_routes = {
								login_page: "/login/",
								profile_page: "/profile/"
							}

							// Make the profile object.
							window.pw_profile = new User_Profile(
								611,
								true,
								pw_profile_routes,
								{"error_wrong_password_settings":"The current password does not match this account. Please enter correct current password.","error_password_required":"Please fill out all password fields to change password","error_bad_confirmation_token":"Sorry, but the confirmation link provided has expired. Please request a new one.","alert_pwofile_password_updated":"Your profile password has been updated.","error_passwords_mismatch":"Password does not match confirm password!","alert_confirm_taking_to_long":"Sorry, this is taking so long. Please reload the page and try again.","alert_pwofile_SMS_updated":"Profile SMS has been updated.","magic_link_request_success_modal":{"heading":"Thanks!","footer":"OK","body":"Check your email for a link to access your account. Make sure to check your spam folder if you don’t see it in your&nbsp;inbox."},"error_user_not_found":"Cannot find account with that email","alert_pwofile_SMS_number_already_in_use":"SMS number is already in use.","alert_pwofile_subscriptions_updated":"Your subscriptions have been updated.","alert_pwofile_details_updated":"Your personal settings have been updated."},
								[2138944619,2138944569,2138998290,2138944570,2138944571,2138959562,2138944572,2138944574,2138944575,2138944576,2138944577,2138997448,2138944621,2138944580,2138944622,2138944585,2138944623,2138944588,2138997350,2138967193,2138944624,2138944591,2138944625,2139000420,2138944595,2138999002,2139001187,2138944596,2138944597,2138944598,2138965660,2138994047,2138944599,2138944604,2138944605,2138944606,2138944610,2138983265,2138944612,2138946752,2138997398,2138944614],
								'US',
								'NE',
								[],
								false, 
								13,
								false, 
								{"Kid’s Fashion & Shoes":33482,"Sports Equipment / Fitness":33486,"Events":33478,"Food & Beverage / Cooking":33480,"Women’s Fashion":209,"Men’s Shoes":1159,"Medical / Health":33485,"House / Home Décor / Kitchenware":33481,"Accessories / Handbags":33474,"Travel / Luggage":33487,"Art / Exhibitions / Museums":33475,"Live Music Events":33484,"Beauty / Wellness":33476,"Women’s Shoes":234,"Men’s Fashion":276,"Entertainment / Movies":33477,"Jewelry":91},
								[]
							);
							
						})
					</script>
</head>

	<body class="home">
		<a href="#content" class="visually-hidden">Skip to main content</a>

		<div class="outer-wrapper">
			<div class="inner-wrapper">
				<div class="reveal-wrapper">

					<header role="banner" class="header-banner">
						<div class="container">

							<div class="mall-logo " itemscope itemtype="http://schema.org/Organization" role="presentation">
				<a itemprop="url" href="/" title="Click to return to the home page.">
					<span class="visually-hidden">Conestoga Mall home page</span>
					<img itemprop="logo" src="/mimages/house@Namdar/mall-logo.png" alt="">
				</a>
			</div> 
			<div class="my-mall-injection" style="display:none;">
				
			<div class="container">
				<!-- papillon -->
			<div class="my-mall pwofile-placard deal-count-placard pwofile-placard-papillon">
				<div style="display:none" id="logged_in_nav-with-deals" class="profile-placard-section">
					
		<h3>Hey there, VIP</h3>
		<p>You Have</p>
		<h3 class="new-deals second-headline"><span class="deal-number">some</span> new deals</h3>
		<h3 class="second-headline">waiting for you</h3>
		<a href="/sales/" class="btn">view my deals</a>
		<a class="edit-link" href="/profile/#personal-settings">Edit Profile</a>
	
				</div>

				<div style="display:none" id="logged_in_nav" class="profile-placard-section">
					
		<h3>Hey there, VIP
		<span class="tagline">Start Saving Now</span></h3>
		<p>Click below to follow your<br>favorite stores and then<br>watch the savings grow!</p>
		<a href="/profile/#stores" class="btn">view my stores</a>
	
				</div>

				<div class="loggedout provisional profile-placard-section">
					

		<h3>Become a<br><span>Conestoga Mall VIP</span></h3>

		<p>Follow your favorite stores<br> and be the first to know about<br> sales, events, and more!</p>

		<a href="/profile/" class="btn mutton">Start Saving Today</a>
	
				</div>
			</div>
			</div>
		
			</div>

			
			<datalist id="search_completion_suggestions"> <option value="AMC Classic Grand Island 7 Theatre"><option value="American Eagle Outfitters"><option value="Aundrea’s Boutique"><option value="Bath & Body Works"><option value="Best Buy"><option value="Bling Glamour"><option value="Buckle"><option value="The Children’s Place"><option value="Chinese Massage"><option value="Claire’s"><option value="Coin Corner"><option value="The Country Wagon LLC"><option value="Dee’s Hallmark"><option value="Dillard’s"><option value="Foot Locker"><option value="Glik’s"><option value="Home Federal ATM"><option value="Hot Topic"><option value="Hyped"><option value="Imagination City"><option value="Imperial Palace Express"><option value="Incredible Bulk"><option value="JoAnn Fabrics"><option value="Kaw Valley Greenhouses"><option value="Kay Jewelers"><option value="King of Fades Barber Shop"><option value="KO Toys & Arcade"><option value="LensCrafters"><option value="Liberty Tax"><option value="maurices"><option value="MBA Fashion"><option value="New York Pizza & Italian Restaurant"><option value="NTV/KFXL Fox Nebraska"><option value="PretzelMaker"><option value="Pro Image"><option value="Pro Nails"><option value="rue21"><option value="Sherri’s Gems"><option value="Tradehome Shoes"><option value="Tri City Furniture"><option value="Underground Cafe"><option value="Viaero Wireless"></datalist>
		<button class="couer open-my-mall desktop-hidden tablet-mobile-shown" aria-haspopup="true" aria-expanded="false" aria-controls="my-mall" aria-label="My Mall Login Flyout Control- open or close" style="background-color: transparent; border: none; padding: 0; filter:none;">
      	<!-- couer gpis -->
        <svg class="couer heart-and-shoulders" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 639.3 565.7" xml:space="preserve">
          <g class="heart-exterior">
            <path d="M590.5,53.1c-66.7-69-176.6-71-245.7-4.5l-25.1,25.1l-24.9-24.9l-0.2-0.2c-69.2-66.5-179.1-64.5-245.8,4.5
              c-66.7,69.2-64.7,179.3,4.4,246.1l266.5,266.5l266.5-266.5C655.2,232.5,657.2,122.3,590.5,53.1z"/>
          </g>
          <g class="heart-interior">
            <path d="M520.7,41c-17.6-7.3-36.2-11-55.4-11c-37.3,0-72.6,14.2-99.6,40l-24.9,24.9l-21.2,21.2l-21.2-21.2L273.5,70
              l0,0c-26.9-25.8-62.3-40-99.6-40c-19.1,0-37.8,3.7-55.4,11c-18.2,7.6-34.4,18.6-48.2,32.9c-26.7,27.7-41,64.1-40.3,102.6
              c0.7,38.5,16.3,74.4,44,101.1l0.2,0.2l0.2,0.2l245.3,245.3L564.9,278l0.2-0.2l0.2-0.2c27.7-26.7,43.3-62.6,44-101.1
              c0.7-38.5-13.6-74.9-40.3-102.6C555.1,59.6,538.9,48.6,520.7,41z"/>
          </g>
          <g class="head shoulders">
            <circle cx="319.7" cy="204.7" r="64"/>
            <path d="M398.2,283.4h-12.7c-36.9,34.8-94.6,34.8-131.5,0h-12.7c-29.8,0-54,24.2-54,54v53.5l132.4,132.4l132.5-132.6v-53.3
              C452.2,307.6,428,283.4,398.2,283.4z"/>
          </g>
        </svg>
      </button> 
		<button class="open-panel desktop-hidden" aria-haspopup="true" aria-expanded="false" aria-controls="menu" aria-label="Mobile Navigation Control - open or close" style="background-color: transparent; border: none;"><span aria-hidden="true"></span></button>
	
	<!-- c -->
	<!-- almohada -->
		<nav role="navigation" itemtype="http://schema.org/SiteNavigationElement" class="primary" itemscope><div class="container"><div class="menu"><ul aria-label="Primary Navigation" class="primary"><li aria-label="Shop" itemprop="name" class="item drop-parent item" aria-expanded="false"><a itemprop="url" href="/directory/" id="CB4E33F7" tabindex="0" aria-haspopup="true">Shop</a><ul aria-labelledby="CB4E33F7" class="n2items drop"><li itemprop="name" class="item"><a itemprop="url" href="/directory/" tabindex="0">Store Listings</a></li></ul></li><li itemprop="name" class="item"><a itemprop="url" href="/sales/" tabindex="0">Sales</a></li><li itemprop="name" class="item"><a itemprop="url" href="/movies/" tabindex="0">Movies</a></li><li itemprop="name" class="item"><a itemprop="url" href="/events/" tabindex="0">Events</a></li><li itemprop="name" class="item"><a itemprop="url" href="/trends/grand-island-ne/" tabindex="0">articles</a></li><li aria-label="Info" itemprop="name" class="item drop-parent item" aria-expanded="false"><a itemprop="url" href="/about/" id="DD81A439" tabindex="0" aria-haspopup="true">Info</a><ul aria-labelledby="DD81A439" class="n9items drop"><li itemprop="name" class="item"><a itemprop="url" href="/directions/" tabindex="0">Directions</a></li><li itemprop="name" class="item"><a itemprop="url" href="/contact-us/" tabindex="0">Contact</a></li><li itemprop="name" class="item"><a itemprop="url" href="/leasing/" tabindex="0">Leasing</a></li><li class="item"><a target="blank" href="https://cdn.placewise.com/Namdar/Conestoga/files/ConestogaMallCodeofConductforWebsite.pdf" tabindex="0">Code of Conduct</a></li><li itemprop="name" class="item"><a itemprop="url" href="/hours/" tabindex="0">Hours</a></li><li itemprop="name" class="item"><a itemprop="url" href="/services/" tabindex="0">Services</a></li><li itemprop="name" class="item"><a itemprop="url" href="/mallwalking" tabindex="0">Mall Walkers</a></li><li itemprop="name" class="item"><a itemprop="url" href="/jobs/" tabindex="0">Employment</a></li></ul></li><li class="item non-text-holder search-icon-wrapper">

		<div class="search-injection" style="display:none;">
			
			
			<!-- standard get_search_flyout -->
			<div class="search-container">
				<div class="container">
					
				<div class="desktop-shown tablet-hidden mobile-hidden">
			
					
					<form class="search SEWsearchForm" id="search" action="javascript:void(0);" role="search">
						
						<label for="db2403e1" class="visually-hidden">Search</label>
						<input
							type="search"
							class="search-field"
							placeholder="Search"
							list="search_completion_suggestions"
							id="db2403e1"
							aria-label="Search" 
						>
						<button
							value="Submit"
							class="search-submit"
							type="submit"
							tabindex="0"
							aria-label="Submit"
						></button>
					</form>
			
				</div>
			
				</div>
			</div>
		
			
		</div>

		
			<div id="search-box" class="search-icon desktop-shown tablet-hidden mobile-hidden">
				<i class="fa fa-search"></i>
			</div>
		
				<div class="desktop-hidden tablet-mobile-shown">
			
					
					<form class="search SEWsearchForm" id="search" action="javascript:void(0);" role="search">
						
						<label for="0c4f9ef4" class="visually-hidden">Search</label>
						<input
							type="search"
							class="search-field"
							placeholder="Search"
							list="search_completion_suggestions"
							id="0c4f9ef4"
							aria-label="Search" 
						>
						<button
							value="Submit"
							class="search-submit"
							type="submit"
							tabindex="0"
							aria-label="Submit"
						></button>
					</form>
			
				</div>
			</li><li class="item non-text-holder my-mallified-wrapper"><button class="couer open-my-mall desktop-shown tablet-hidden mobile-hidden" aria-haspopup="true" aria-expanded="false" aria-controls="my-mall" aria-label="My Mall Login Flyout Control- open or close" style="background-color: transparent; border: none; padding: 0; filter:none;">
      	<!-- couer gpis -->
        <svg class="couer heart-and-shoulders" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 639.3 565.7" xml:space="preserve">
          <g class="heart-exterior">
            <path d="M590.5,53.1c-66.7-69-176.6-71-245.7-4.5l-25.1,25.1l-24.9-24.9l-0.2-0.2c-69.2-66.5-179.1-64.5-245.8,4.5
              c-66.7,69.2-64.7,179.3,4.4,246.1l266.5,266.5l266.5-266.5C655.2,232.5,657.2,122.3,590.5,53.1z"/>
          </g>
          <g class="heart-interior">
            <path d="M520.7,41c-17.6-7.3-36.2-11-55.4-11c-37.3,0-72.6,14.2-99.6,40l-24.9,24.9l-21.2,21.2l-21.2-21.2L273.5,70
              l0,0c-26.9-25.8-62.3-40-99.6-40c-19.1,0-37.8,3.7-55.4,11c-18.2,7.6-34.4,18.6-48.2,32.9c-26.7,27.7-41,64.1-40.3,102.6
              c0.7,38.5,16.3,74.4,44,101.1l0.2,0.2l0.2,0.2l245.3,245.3L564.9,278l0.2-0.2l0.2-0.2c27.7-26.7,43.3-62.6,44-101.1
              c0.7-38.5-13.6-74.9-40.3-102.6C555.1,59.6,538.9,48.6,520.7,41z"/>
          </g>
          <g class="head shoulders">
            <circle cx="319.7" cy="204.7" r="64"/>
            <path d="M398.2,283.4h-12.7c-36.9,34.8-94.6,34.8-131.5,0h-12.7c-29.8,0-54,24.2-54,54v53.5l132.4,132.4l132.5-132.6v-53.3
              C452.2,307.6,428,283.4,398.2,283.4z"/>
          </g>
        </svg>
      </button> </li></ul></div></div></nav><!-- nav cached at 3:57 AM --> 
							
						</div>
					</header>

					<div id="content" class="content wrap">

					

						<div class="container">
							<section class="home">

		
		<div class="banner">
			<div class="container">
				<div class="homepage-carousel">
					
						<!-- has slides from data -->
						
						
							<!-- slides -->
							
										<div class="slide" style="background: url('https://placewise.imgix.net/Namdar/images/GettyImages-536915935.jpg?w=1440&usm=15&q=80&h=640&fit=crop&crop=entropy&auto=format&?=?');">
											
												<figcaption>
													<hr>
													
																<h1>Come See</h1>
															
																<h2>What’s in Store</h2>
															
																<hr>
															
																<h3>Conestoga Mall</h3>
															
														<a href="/directory/"><button class="read-more">View Directory</button></a>
													
												</figcaption>
											
										</div>
										
				</div>
			</div>
		</div>
		

		<section class="shop-stores">
			<div class="container">
				<h2>Explore Our Stores</h2>

				<style>
						.store-recently-opened h3 {
							background-color:#139C50!important;
						}
					</style>
					<!-- now with featured logos -->
					<div class="brand-rotator store-grid" role="presentation">
						<ul>
							
								<li>
									<a href="/store/Tradehome-Shoes/2138944612/" tabindex="0" aria-label="Tradehome Shoes">
				

				<div class="store-item js-store-item js-alpha-t js-cat-footwear-and-sports js-siid-2138944612" data-store-id="2138944612">
					<img src="https://images.shoptopia.com/mcache/200x150/store/2568" width="200" height="150" class="store-logo" aria-hidden="true" alt="Tradehome Shoes" /> 

				</div>
			</a>
								</li>
							
								<li>
									<a href="/store/New-York-Pizza-and-Italian-Restaurant/2138994047/" tabindex="0" aria-label="New York Pizza & Italian Restaurant">
				

				<div class="store-item js-store-item js-alpha-n js-cat-restaurants-and-treats js-siid-2138994047" data-store-id="2138994047">
					<img src="https://images.shoptopia.com/mcache/200x150/store/2137091620" width="200" height="150" class="store-logo" aria-hidden="true" alt="New York Pizza & Italian Restaurant" /> 

				</div>
			</a>
								</li>
							
								<li>
									<a href="/store/maurices/2138944598/" tabindex="0" aria-label="maurices">
				

				<div class="store-item js-store-item js-alpha-m js-cat-fashion js-siid-2138944598" data-store-id="2138944598">
					<img src="https://cdn.placewise.com/images/api/stores/2563.svg" width="200" height="150" class="store-logo" aria-hidden="true" alt="maurices" /> 

				</div>
			</a>
								</li>
							
								<li>
									<a href="/store/Pro-Image/2138944605/" tabindex="0" aria-label="Pro Image">
				

				<div class="store-item js-store-item js-alpha-p js-cat-footwear-and-sports js-siid-2138944605" data-store-id="2138944605">
					<img src="https://images.shoptopia.com/mcache/200x150/store/1861" width="200" height="150" class="store-logo" aria-hidden="true" alt="Pro Image" /> 

				</div>
			</a>
								</li>
							
								<li>
									<a href="/store/Kaw-Valley-Greenhouses/2139000420/" tabindex="0" aria-label="Kaw Valley Greenhouses">
				

				<div class="store-item js-store-item js-alpha-k js-cat-specialty js-siid-2139000420" data-store-id="2139000420">
					<img src="https://images.shoptopia.com/mcache/200x150/store/2137086810" width="200" height="150" class="store-logo" aria-hidden="true" alt="Kaw Valley Greenhouses" /> 

				</div>
			</a>
								</li>
							
								<li>
									<a href="/store/Tri-City-Furniture/2138946752/" tabindex="0" aria-label="Tri City Furniture">
				

				<div class="store-item js-store-item js-alpha-t js-cat-specialty js-siid-2138946752" data-store-id="2138946752">
					<img src="https://images.shoptopia.com/mcache/200x150/store/2137076809" width="200" height="150" class="store-logo" aria-hidden="true" alt="Tri City Furniture" /> 

				</div>
			</a>
								</li>
							
						</ul>
					</div> 

				<a href="/directory/" class="btn read-more gtag-btn">View Directory</a>
			</div>
		</section>

	</section>
	

</div>





<div class="triumvirate">
	<div class="container">

		<ul>
			<li>
				<a href="/directory/">
					<figure>
						<img src="/dimages/house@Namdar/shop.jpg" alt="">
						<figcaption>
							<hr>
							<h2>
								<span>Shop &amp; Save</span>
							</h2>
							<hr>
							<button class="read-more">View Directory</button>
						</figcaption>
					</figure>
				</a>
			</li>
			<li>
				<a href="/events/">
					<figure>
						<img src="/dimages/house@Namdar/events.jpg" alt="">
						<figcaption>
							<hr>
							<h2>
								<span>Events</span>
							</h2>
							<hr>
							<button class="read-more">View More</button>
						</figcaption>
					</figure>
				</a>
			</li>
			
				<li>
					<a href="/trends/Grand-Island-NE/">
						<figure>
							<img src="/dimages/house@Namdar/trends.jpg" alt="">
							<figcaption>
								<hr>
								<h2>
									<span>Trends</span>
								</h2>
								<hr>
								<button class="read-more">View Trends</button>
							</figcaption>
						</figure>
					</a>
				</li>
			
		</ul>

	</div>
</div>



<section class="home">
	<div class="container">




							</section>
						</div>
					</div>

					
						<div class="pre-footer">
							<section role="region">
								<h3>Stay In The Know</h3>
<h4>Stay informed about Sales Events &amp; Promotions</h4>


	  <div class="email_signup_widget_v1 pnp">
	      <p class="email_signup_messages" style="display:none;"></p>
	      <input name="email_widget_email" type="email" placeholder="Enter your Email" aria-label='Subscribe to our Email List'>
	      <input type="hidden" name="signup_code" value="home footer email signup index.cfm">
	      <div id="eWidgetSubmit">
	          <button type="button" class="email_widget_submit" data-up-text="&#9656;" data-down-text="" aria-label="submit"><span class="visually-hidden">Submit</span>&#9656;</button>
	      </div>
	      <div style="display:none;" class="logged-in-message">
	          You’re already signed up! Go to your <a href="/profile/#profile-management">Profile</a> to manage your account
	      </div>
	  </div>
	  
							</section>
						</div>
					

					<footer role="contentinfo">
						<section role="region">
							<div class="third">
								
											<div>
												<time><div class="component-hours-block">
					
						<h4>Mall Hours</h4>
					
							<dl class="has-3-definitions"><dt>Sat</dt><dd>10am - 8pm</dd>
										<dt>Sun</dt><dd>Noon - 6pm</dd>
										<dt>Mon&ndash;Fri</dt><dd>10am - 8pm</dd>
										</dl>
						
				</div></time>
											</div>
											<a class="read-more" href="/hours/">View Calendar</a>
										
							</div>

							<div class="third">
								<h4>Stay Connected</h4>
								<div class="component-social">
									<ul>
										
													<li><a tabindex="0" href="https://www.facebook.com/ConestogaMall" rel="noopener" class="facebook"><span class="visually-hidden">Follow us on Facebook</span><i aria-hidden="true" class="fa fa-facebook fa"></i></a></li>
												
													<li><a tabindex="0" href="https://www.instagram.com/shopconestogamall/" rel="noopener" class="instagram"><span class="visually-hidden">Follow us on Instagram</span><i aria-hidden="true" class="fa fa-instagram fa"></i></a></li>
												
													<li><a tabindex="0" href="https://www.twitter.com/shopconestoga/" rel="noopener" class="twitter"><span class="visually-hidden">Follow us on Twitter</span><i aria-hidden="true" class="fa fa-twitter fa"></i></a></li>
												
											<li>
												<a href="/register"><span class="visually-hidden">Register</span><i class="fa fa-user fa-2x"></i></a>
											</li>
										
									</ul>
								</div>
							</div>

							<div class="third">
								<div class="component-adblock">
									
 		<a href="/login/#register">
			<span class="visually-hidden">Register for many benefits</span>
			<img src="/dimages/profile-mrec.png" width="300" height="250" />
		</a>
		
		
								</div>
							</div>
						</section>
					</footer>

					<div class="post-footer" role="region">
						<div class="address-wrapper">
				<span class="recipient">Conestoga Mall</span>
				<address>
					<span class="streetAddress">3404 W. 13th Street</span>
					<span class="addressLocality">Grand Island</span>, <span class="addressRegion">NE</span> <span class="postalCode">68803</span>
				</address>
				<a itemprop="telephone" href="tel:+13083827463" class="telephone" tabindex="0">(308) 382-7463</a> 
			</div> 
						<br>
						<div class="footer-links">
							
							<br>
							
		<!-- almohada -->
		<nav itemtype="http://schema.org/SiteNavigationElement" class="footer-links footer-nav" itemscope><ul aria-label="Secondary Navigation" class="footer n5items"><li itemprop="name" class="item"><a itemprop="url" href="/privacy/" tabindex="0">Privacy</a></li><li itemprop="name" class="item"><a itemprop="url" href="/terms/" tabindex="0">Terms of Use</a></li><li itemprop="name" class="item"><a itemprop="url" href="/sitemap/" tabindex="0">Site Map</a></li><li itemprop="name" class="item"><a itemprop="url" href="/accessibility/" tabindex="0">Accessibility</a></li></ul></nav><!-- nav cached at 3:57 AM --> 
						</div>

						<section role="region" class="slugs">
							<ul>
								<li> 
<!-- yvtias!c --><div class="slug client-slug"><a href="http://namdarrealtygroup.com/" target="_blank" rel="noopener" class="slug-footer"><img src="https://cdn.placewise.com/Namdar/images/namdar-company-logo.png" alt="Namdar Realty Group" /></a></div> </li>
								<li> 
		<div class="slug placewise-slug">
			<a href="https://www.placewise.com/" target="_blank" rel="noopener" tabindex="0" title="Brought to you by the placeWise network">
				
					
					<svg class="slug PWDlogoSlug Echo-2" data-name="PWDlogoSlug" aria-labelledby="PWDlogoSlugTitle" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" height="23" width="172" viewBox="0 0 164.5 22" xml:space="preserve">
						<title id="PWDlogoSlugTitle">placewise logo</title>
						<style type="text/css">
							.outer-rectangle{fill-rule:evenodd;clip-rule:evenodd;}
							.PWDlogoSlug {fill:#949ca1; stroke:none;}
						</style>
						<g class="network">
							<path d="M101.3,8h1.2v1.4c0.5-1.1,1.5-1.6,2.7-1.6c2,0,3,1.2,3,3.6v4h-1.2v-4c0-1.7-0.8-2.4-2.1-2.4s-2.4,1.2-2.4,2.5v0.1v3.9h-1.2
								L101.3,8z"/>
							<path d="M117.3,12.1h-6.1c0.1,1.3,1.1,2.4,2.5,2.4c0.9,0.1,1.7-0.5,2-1.2h1.4c-0.5,1.4-1.9,2.5-3.4,2.4c-2.1,0-3.7-1.7-3.7-3.8
								v-0.1c-0.1-2.1,1.6-3.8,3.6-3.9h0.1c2,0,3.6,1.6,3.6,3.6c0,0,0,0,0,0.1V12.1z M116.1,11c-0.2-1.1-1.2-2-2.4-2c-1.1,0-2.2,0.9-2.4,2
								H116.1z"/>
							<path d="M119.2,12.7V9.1h-1.6V8h1.6V5.8h1.2V8h2.4v1.1h-2.4v3.6c0,1.4,0.7,1.6,1.3,1.6h1.1v1.1h-1.4
								C120.5,15.4,119.2,15,119.2,12.7z"/>
							<path d="M123.3,8h1.3l1.7,5.4l0.1,0.5l0,0l0.1-0.5l1.7-5.4h1l1.6,5.3l0.2,0.5l0,0l0.2-0.6L133,8h1.3l-2.6,7.4h-1.1l-1.8-5.6l0,0
								l-1.8,5.6h-1.2L123.3,8z"/>
							<path d="M134.8,11.8c-0.1-2.1,1.6-3.8,3.7-3.9h0.1c2.1,0,3.8,1.7,3.9,3.8c0,0,0,0,0,0.1c0,2.1-1.7,3.8-3.8,3.8
								C136.7,15.6,134.8,13.9,134.8,11.8z M141.3,11.8c0-1.4-1.1-2.6-2.6-2.6s-2.6,1.2-2.6,2.6s1.1,2.6,2.6,2.6
								C140.1,14.4,141.3,13.2,141.3,11.8z"/>
							<path d="M144.3,8h1.2v1.7c0.3-1.1,1.2-1.7,2.3-1.7h0.7v1.1h-0.7c-1.2,0-2.3,1.1-2.3,2.9v3.5h-1.2V8z"/>
							<path d="M152.6,11.9l-1.4,1.5v2.1h-1.2V5.3h1.2V12l3.2-3.9h1.5l-2.4,3l2.8,4.4h-1.3L152.6,11.9z"/>
						</g>
						<g class="placewise">
							<path d="M28,8h2.1v1c0.5-0.8,1.3-1.2,2.3-1.2c2.1,0,3.6,1.8,3.6,4s-1.5,4-3.6,4c-0.9,0-1.7-0.4-2.3-1.2l0.1,1v2.6h-2.3L28,8L28,8z
								 M33.8,11.7c0.1-1-0.7-1.9-1.6-2c-0.1,0-0.1,0-0.2,0c-1.1,0-1.8,1-1.8,2l0,0c0,1.1,0.8,1.9,1.8,2c1,0,1.8-0.8,1.8-1.7
								C33.8,11.8,33.8,11.8,33.8,11.7z"/>
							<path d="M37.3,5.3h2.3v10.3h-2.3V5.3z"/>
							<path d="M40.8,11.7c0-2.2,1.4-4,3.5-4c1-0.1,1.9,0.4,2.4,1.2V8h2.1v7.6h-2.1v-1c-0.6,0.8-1.4,1.2-2.4,1.2
								C42.4,15.7,40.8,13.9,40.8,11.7z M46.7,11.7c0.1-1.1-0.8-1.9-1.8-2l0,0c-1,0-1.8,0.9-1.8,1.8c0,0.1,0,0.1,0,0.2
								c-0.1,1,0.7,1.9,1.6,2c0.1,0,0.1,0,0.2,0C45.9,13.6,46.8,12.7,46.7,11.7L46.7,11.7z"/>
							<path d="M50.2,11.7c-0.1-2.1,1.6-3.9,3.7-4c0.1,0,0.1,0,0.2,0c1.9-0.1,3.5,1.2,3.9,3.1h-2.3c-0.3-0.7-0.9-1.1-1.5-1
								c-1,0-1.7,0.9-1.7,1.8v0.1c-0.1,1,0.7,1.9,1.6,2h0.1c0.8,0.1,1.4-0.5,1.5-1.1h2.3c-0.3,1.9-2,3.3-3.9,3.2c-2.1,0-3.9-1.7-3.9-3.8
								C50.2,11.8,50.2,11.8,50.2,11.7z"/>
							<path d="M66.5,12.3h-5.6c0.1,0.9,0.8,1.5,1.7,1.5c0.6,0.1,1.1-0.2,1.3-0.8h2.4c-0.5,1.6-2,2.7-3.7,2.7c-2.1,0-3.9-1.7-3.9-3.8
								c0-0.1,0-0.1,0-0.2c-0.1-2.1,1.6-3.9,3.7-4c0.1,0,0.1,0,0.2,0c2.1,0,3.7,1.6,3.8,3.6c0,0.1,0,0.2,0,0.3
								C66.5,11.8,66.5,12.1,66.5,12.3z M64.3,10.7c-0.1-0.8-0.8-1.2-1.5-1.2c-0.8,0-1.4,0.5-1.7,1.2H64.3z"/>
							<path d="M66.7,8h2.4l1.2,4.1l0.1,0.5h0.1l0.1-0.5L71.8,8h1.6l1.2,4.1l0.1,0.5l0,0l0.2-0.5L76,7.9h2.3l-2.5,7.6h-2l-1.2-4.2l0,0
								l-1.3,4.2h-2L66.7,8z"/>
							<path d="M79,5.8c0.1-0.8,0.8-1.2,1.4-1.2c0.7,0.1,1.1,0.6,1.2,1.2c-0.1,0.8-0.8,1.2-1.4,1.2C79.5,7,79.1,6.5,79,5.8z M79.2,8h2.3
								v7.6h-2.3V8z"/>
							<path d="M82.8,13h2.1c0.1,0.6,0.4,1,1.2,1c0.7,0,1-0.3,1-0.7c0-0.4-0.4-0.6-1.2-0.7c-1.5-0.2-2.7-0.8-2.7-2.4c0-1.5,1.1-2.4,3-2.4
								c1.9,0,3.2,1.1,3.2,2.6h-2.2c-0.1-0.5-0.5-0.9-1-0.8l0,0c-0.6,0-0.8,0.3-0.8,0.6c0,0.4,0.2,0.5,1.3,0.7c1.7,0.2,2.8,0.8,2.8,2.4
								c0,1.7-1.4,2.6-3.4,2.6C83.8,15.7,82.8,14.4,82.8,13z"/>
							<path d="M97.9,12.3h-5.6c0.1,0.9,0.8,1.5,1.7,1.5c0.6,0.1,1.2-0.2,1.3-0.8h2.4c-0.5,1.6-2,2.7-3.7,2.7c-2.1,0-3.9-1.7-3.9-3.8
								c0-0.1,0-0.1,0-0.2c-0.1-2.1,1.6-3.9,3.7-4c0.1,0,0.1,0,0.2,0c2.1,0,3.7,1.6,3.8,3.6c0,0.1,0,0.2,0,0.3
								C97.9,11.8,97.9,12.1,97.9,12.3z M95.6,10.7c-0.1-0.8-0.8-1.2-1.5-1.2c-0.8,0-1.4,0.5-1.7,1.2H95.6z"/>
						</g>
						<path class="outer-rectangle" d="M0,0h164.5v22H0V0z M0.6,0.6h163.3v20.9H0.6V0.6z"/>
						<g class="icon">
							<path d="M14.8,6.5h3.5v10.1h-3.5V6.5z"/>
							<path d="M11.4,9c1.4,0,2.6,1.1,2.6,2.6s-1.1,2.6-2.6,2.6s-2.6-1.2-2.6-2.6C8.8,10.2,10,9,11.4,9"/>
							<path d="M21.6,9c1.4,0,2.6,1.1,2.6,2.6s-1.2,2.6-2.6,2.6S19,13,19,11.6S20.1,9,21.6,9C21.5,9,21.5,9,21.6,9"/>
						</g>
					</svg>
				
			</a>
		</div>
	</li>
							</ul>
						</section>
					</div>

					</div>
				</div>
			</div>

			

        <div class="opmessage-injection" data-config='{"attach_point":"body","position":"fixed","top":0,"left":"50%","animation_speed":1000,"zindex":10000,"reveal_method":"slideDown","right":"auto","bottom":"auto","content":"text","attach_method":"prependTo"}' style="display:none;">
            <div class="opmessage-content">
                <svg class="alert" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="icons" x="0px" y="0px" viewBox="0 0 24.1 28.3" xml:space="preserve" role="presentation"><title>Alert</title><g><path d="M5.9,11.5c0.2,0.2,0.5,0.3,0.8,0.3c0.4,0,0.7-0.2,0.9-0.4c0.4-0.5,0.4-1.3-0.2-1.7c-0.6-0.5-1-1.3-1-2.1 c0-0.8,0.4-1.5,1-2.1c0.5-0.4,0.6-1.2,0.2-1.7C7.2,3.2,6.5,3.2,5.9,3.6c-1.2,1-1.9,2.4-1.9,4C4.1,9.1,4.8,10.5,5.9,11.5z"/><path d="M3.8,15.1c0.3,0,0.6-0.1,0.9-0.4c0.5-0.5,0.5-1.3,0-1.8c-1.4-1.5-2.2-3.4-2.2-5.5c0-2.1,0.8-4,2.2-5.5 c0.5-0.5,0.5-1.3,0-1.7c-0.5-0.5-1.3-0.5-1.7,0C1,2.3,0,4.9,0,7.6c0,2.7,1,5.3,3,7.2C3.2,15,3.5,15.1,3.8,15.1z"/><path d="M16.4,11.4c0.2,0.3,0.6,0.4,1,0.4c0.3,0,0.6-0.1,0.8-0.3c1.2-1,1.9-2.4,1.9-4c0-1.5-0.7-3-1.9-4c-0.5-0.4-1.3-0.4-1.7,0.2 c-0.4,0.5-0.4,1.3,0.2,1.7c0.6,0.5,1,1.3,1,2.1c0,0.8-0.4,1.5-1,2.1C16,10.1,15.9,10.8,16.4,11.4z"/><path d="M21.6,7.6c0,2.1-0.8,4-2.2,5.5c-0.5,0.5-0.5,1.3,0,1.8c0.2,0.2,0.6,0.4,0.9,0.4c0.3,0,0.6-0.1,0.9-0.4 c1.9-1.9,2.9-4.5,2.9-7.2c0-2.7-1-5.3-2.9-7.2c-0.5-0.5-1.3-0.5-1.8,0c-0.5,0.5-0.5,1.3,0,1.7C20.8,3.6,21.6,5.5,21.6,7.6z"/><path d="M20.6,26.4c-0.5,0-1.1-0.4-1.2-0.6c-3.3-4.3-5.2-11.2-6-16.2c0.7-0.4,1.1-1.2,1.1-2c0-1.3-1.1-2.4-2.4-2.4 c-1.3,0-2.4,1.1-2.4,2.4c0,0.8,0.4,1.6,1.1,2c-0.8,5-2.8,11.9-6,16.2C4.5,26,4,26.4,3.5,26.4s-1,0.4-1,1s0.4,1,1,1h3.4 c0.5,0,1-0.4,1-1c0-0.2-0.1-0.4-0.2-0.6c0.4-0.8,2-1.6,4.4-1.6c2.4,0,3.9,0.8,4.4,1.6c-0.1,0.2-0.2,0.4-0.2,0.6c0,0.5,0.4,1,1,1 h3.4c0.5,0,1-0.4,1-1S21.1,26.4,20.6,26.4z M12,15.4c0.6,0,1,0.5,1,1c0,0.6-0.5,1-1,1c-0.6,0-1-0.5-1-1C11,15.8,11.5,15.4,12,15.4z M12,22.4c-0.9,0-1.6-0.7-1.6-1.6c0-0.9,0.7-1.6,1.6-1.6c0.9,0,1.6,0.7,1.6,1.6C13.6,21.7,12.9,22.4,12,22.4z"/></g></svg><div class="message"><span></span></div>
            </div>
        </div>
    

		<script src="//imgathena.mallfinder.com/images/js/selectric/v1.9.3/jquery.selectric.js"></script>
		<script>
			$(function(){
				$('.selectric').selectric();
			});
			$('.trends-carousel').css('visibility', 'visible');
		</script>

		
<!-- you are on the vpn, so this is not cached info -->
<script src="/js/house@Namdar/production-v1672861543297.min.js"></script> 

		<script>
			$(document).on('pw:post_eob_ready', function(e) { console.log(e.type)});
			$(document).trigger('pw:post_eob_ready');
		</script>
		

    <style>
      .omodal .omodal-body{
          background-color: #ccc;
          background-image: none;
      }
      .omodal .omodal-header h3::before{
        background:none;

      }
      .standard-email_signup_modal_v7.omodal .omodal-body h2{
        font-family: Allura,cursive;
      }
      .omodal .omodal-body h2, .omodal .omodal-body p,
      .omodal .omodal-body [class^=email_signup_widget] .email_signup_header input::placeholder{
        color: #535250;
      }
      .omodal .omodal-header, .omodal .omodal-footer{
      background-color: #797875;
      }
      .omodal .disclaimer a {
        color: initial;
      }
      .omodal .omodal-footer {
	      text-align: center;
	    }
    </style>
    

		<div class="omodal standard-email_signup_modal_v7 email_signup_modal_v7 gooble-omodal" id="standard-email_signup_modal_v7" style="display:none;">
			<div class="omodal-container omodal-container-success" style="display:none;">
				<div class="omodal-close"><i class="fa fa-times"></i></div>
				<div id="omodal-content">
					<div class="omodal-header">
						<h3>Join our E-Club</h3>
					</div>

					<div class="omodal-body">
						<h2>Success!</h2><p>Check your email<br>to confirm your account</p>
					</div>

					<div class="omodal-footer">
						<div class="email_widget_success_button"><a href="/sales/" class="email_widget_submit">See What’s New</a></div>
					</div>
				</div>
			</div>
			<div class="omodal-container">
				<form>
					<div class="omodal-close"><i class="fa fa-times"></i></div>
					<div id="omodal-content">
						<div class="omodal-header">
							<h3>Join our E-Club</h3>
							<a class="mobile-link" style="display:none;" href="/modal-register/">Click Here To Sign-Up</a>
						</div>

						<div class="omodal-body">
							<h2>Be the first<br>to know</h2><p>Get the VIP updates on sales,<br>events and promotions!</p> 

	  <div class="email_signup_widget email_signup_widget_v2">
	      <div class="email_signup_header">
	          
	          <input x-autocompletetype="email" autocapitalize="off" aria-label="Your Email Address" autocorrect="off" pattern="^[^@]+@[^@]+\.[a-zA-Z]{2,8}$" data-error-message="Please supply a valid email address." required type="email" name="email_widget_email" spellcheck="false" placeholder="Your Email Address" />
	              <input type="hidden" name="signup_code" value="get_email_signup_widget_v2 index.cfm">
	              <input type="hidden" name="js_success_callback" value="">
	              
	      </div>
	      <div class="email_signup_success" style="display:none;">
	          <h2>Success!</h2><p>Check your email<br>to confirm your account</p>
	      </div>
	      <div style="display:none;" class="logged-in-message">
	          <h3>You’re already signed up!</h3><p>Go to your <a href="/profile/#profile-management">Profile</a> to manage your account</p>
	      </div>
	  </div>

	  
							
						</div>

						<div class="omodal-footer">
							<div class="submit_button_wrapper"><button type="submit" class="email_widget_submit" data-up-text="See What’s New" data-down-text="Processing&hellip;" data-error-text="Out of Order">See What’s New</button></div> 
							<div class="disclaimer-wrapper" style="text-align:center;">
								<span class="disclaimer">By signing up, I agree to the <a href="/terms/" target="_blank">terms</a> and <a href="/privacy/" target="_blank">privacy policy</a>.</span>
							</div>
						</div>
					</div>
				</form>
			</div>
			<div class="omodal-overlay"></div>
		</div>

		
			<div class="omodal magic-link-refresh pwofile-alert omodal-alert" id="magic-link-refresh" >
				<div class="omodal-container">
					<div class="omodal-close"><i class="fa fa-times"></i></div>
					<div id="omodal-content">
						
							<div class="omodal-header">
								Sorry
							</div>
						

						<div class="omodal-body">
							Your login link has expired.<br>To login please generate a new link.
						</div>

						
							<div class="omodal-footer">
								<span class="btn alert-close make-magic-link pwofile-hide-while-processing">SEND NEW LINK</span><span class="btn alert-close pwofile-show-while-processing" style="display:none;">Processing...</span>
							</div>
						
					</div>
				</div>
				<div class="omodal-overlay"></div>
			</div>
		
			<div class="omodal omodal-archetype " id="omodal-archetype" >
				<div class="omodal-container">
					<div class="omodal-close"><i class="fa fa-times"></i></div>
					<div id="omodal-content">
						
							<div class="omodal-header">
								
							</div>
						

						<div class="omodal-body">
							
						</div>

						
							<div class="omodal-footer">
								
							</div>
						
					</div>
				</div>
				<div class="omodal-overlay"></div>
			</div>
		
<script type="text/javascript">
	var _userway_config = {"position":3,"account":"bIU13OLbIy","color":"#053f67","size":"large","type":1};
</script>
<script type="text/javascript" src="https://cdn.userway.org/widget.js"></script>
	

		<!-- eobh -->
	

		</body>
	</html>
