// JavaScript Documentvar questions = new Array();//start the questionsquestions[0] = "<strong>Why should I choose Forgotten Times for my next retreat?</strong> While there are many retreats to choose from, we think that you will find the Forgotten Times the most inclusive retreat you have ever experienced.  Every detail is attended to ensure a stress free stay.<br><a href='faq.html' class='faqlink'>read more >></a>";questions[1] = "<strong>What time is check-in and check-out?</strong> Because we have just opened, we will have a very liberal check-in and check-out policy until our bookings fill up.  Generally you can plan to come any time after 1:00 on Friday afternoon and leave by 6:00 p.m. on Sunday. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[2] = "<strong>What if I am not a crafter?</strong> While the main level is designed specifically for crafters, there are many other amenities on the property to enjoy.  The sleeping and lounging areas are separate from the work room, providing much relaxation time.  The house has wireless internet for easy access to the internet from your laptop. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[3] = "<strong>What are the sleeping accommodations?</strong> Four bedrooms are on a separate level from the work room, creating a relaxing environment for sleeping any time of the day or night.  One bedroom is located off of the workroom.  This room is only used when at least 12 people attend.  Beds are twin size with all linens, pillows, blankets and bedding provided. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[4] = "<strong>What about smoking and pets?</strong> The inside of the retreat is smoke free.  When multiple groups are using the retreat, also please refrain from using the patios and decks if nonsmokers are present.  Smoking receptacles are provided outside the main door.  Sorry, no pets of any kind are allowed in the retreat or on the property. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[5] = "<strong>What if I don’t have a group of twelve?</strong> Our pricing system is designed to accommodate groups large and small.  Your best value is to get a large group of 12 together.  If you want to find more people for your group, please go out to the following message boards: You may also book in separate groups of four and share the house. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[6] = "<strong>Do you have internet access?</strong> Yes, we have a high speed connection to the desktop computer in the work room.  In addition, the house has wireless internet access throughout, including the decks and patios for those that want to bring their laptops. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[7] = "<strong>Is Forgotten Times just a scrapbook retreat?</strong> While the work room is designed to be every scrapbookers dream, it is also accommodating to quilters, beaders, painters and pottery crafters.  In addition, the space is available for business meetings, executive retreats, seminars, family reunions and other party rentals.  <br><a href='faq.html' class='faqlink'>read more >></a>";questions[8] = "<strong>Is the house air-conditioned?</strong> Yes, the home has central air.  There also plenty of windows on all sides for cross ventilation if preferred.  The main level work room also has plenty of windows for cross ventilation, no dark dreary basement. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[9] = "<strong>What if I run out of something and need some supplies?</strong> First, the retreat has a basic store full of scrapbook supplies that retreat guests might need.  Our store at the retreat also has some basic toiletries for sale in case you forget something.  Most of the tools you need are provided in the work room.  <br><a href='faq.html' class='faqlink'>read more >></a>";questions[10] = "<strong>How do I park and get my supplies into the retreat?</strong> The parking is plentiful on this large property.  The work room is on the main level, no steps of any kind.  Just roll from trunk to table.  This also makes the work room fully handicapped accessible. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[11] = "<strong>Is the retreat handicapped accessible?</strong> Yes, the workroom is located on the main level, no steps of any kind.  There is also one bedroom that sleeps two people located on the main level, as well as a bathroom and kitchen.  Handicapped or elderly guests should have no problems.<br><a href='faq.html' class='faqlink'>read more >></a>";questions[12] = "<strong>Is someone there to cook the food?</strong> Except for hosted weekends, groups will have the house to themselves.  The menu is prepared in such a way that the refrigerator and freezer are stocked with precut or prepared items that just need slight preparation or heating in the oven.<br><a href='faq.html' class='faqlink'>read more >></a>";questions[13] = "<strong>Can I bring snacks?</strong> Of course, the menu includes a selection of salty and sweet snacks provided throughout the weekend, along with caffeinated beverages, water, tea, coffee and milk.  But if you want something specific just bring it along.<br><a href='faq.html' class='faqlink'>read more >></a>";questions[14] = "<strong>Can I bring alcoholic beverages?</strong> Yes, there are wine glasses and a blender in the kitchen.  Beverage holders are at each table to prevent accidents. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[15] = "<strong>Who provides the cleaning?</strong> We have cleaning services that will come in after the retreat. For the enjoyment of the group, we ask that you use the garbage cans provided, put dirty towels in the bathroom hampers and load and run the dishwasher before leaving. <br><a href='faq.html' class='faqlink'>read more >></a>";questions[16] = "<strong>What if I loved the retreat so much I want to rebook?</strong> You have two incentives to rebook within two weeks of your stay.  First, you get priority on the same weekend for the next year and your group will also get a 10% discount.  Remember to call within two weeks of your stay. <br><a href='faq.html' class='faqlink'>read more >></a>";//choose a random faq// ======================================// Do not change anything below this line// ======================================var Q = questions.length;var whichQuestion=Math.round(Math.random()*(Q-1));function showQuotation(){	document.write(questions[whichQuestion]);}showQuotation();