function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(22);
ideas[0] = "<font color=cornflowerblue><b>Can I bring my flask into MDRF?</b></font><br>Alcoholic beverages cannot be<br>brought onto MDRF grounds<br>- including the associated<br>parking lot."

ideas[1] = "<font color=cornflowerblue><b>How can I get MDRF info?</b></font><br>The best way is from the MDRF<br>website where you can join<br>their mailing list."

ideas[2] = "<font color=cornflowerblue><b>Are there hotels near MDRF?</b></font><br>Many. MDRF is a partner with the<br>Maryland Hotel and Lodging Assn."

ideas[3] = "<font color=cornflowerblue><b>Are there traffic issues<br>at MDRF?</b></font><br>Absolutely.  Although the<br>parking staff works hard to keep<br>traffic flowing into the site,<br>there are always back-ups leading to the<br>event.  We suggest getting there<br>an hour early."

ideas[4] = "<font color=cornflowerblue><b>Are ticket prices at<br>MDRF expensive?</b></font><br>NO! Not when you compare<br>with other similar events nearby.<br>The Pennsylvania Renaissance Faire<br>costs $10 more for entry."

ideas[5] = "<font color=cornflowerblue><b>Is there First Aid at MDRF?</b></font><br>Yes, both roving and stationary.<br>There is a First Aid booth near<br>the Jousting Arena and roving<br>patrols of trained paramedics.<br>Response from neighboring<br>emergency services is very quick."

ideas[6] = "<font color=cornflowerblue><b>Is MDRF open on Labor Day?</b></font><br>Not only is it open,<br>but all Seniors 62+ get in free!."

ideas[7] = "<font color=cornflowerblue><b>Is this the Official MDRF site?</b></font><br>No.  We're a fan-based community<br>of guests, vendors, entertainers, and<br>castmembers of the event who<br>want to share our enjoyment of<br>the festival."

ideas[8] = "<font color=cornflowerblue><b>Are MDRF shows kid-friendly?</b></font><br>According to MDRF:<br><i>While most everyone will enjoy the<br>entertainment offered at Revel<br>Grove, parents seeking council on age-<br>appropriate shows for their wee<br>lads and lasses should visit the Customer<br>Service Pavilion near the front<br>gate for show descriptions and ratings.</i>"

ideas[9] = "<font color=cornflowerblue><b>What can I purchase at MDRF?</b></font><br>From clothing to swords and<br>from jewelry to books, there are <br>over 130 vendors from which<br>to purchase."

ideas[10] = "<font color=cornflowerblue><b>Does MDRF close for weather?</b></font><br>The festival is open <i>rain or shine.</i><br>We've never seen the site close<br>for either hurricane nor heatwave."

ideas[11] = "<font color=cornflowerblue><b>Where do I get a costume?</b></font><br>You can rent one from the on-site<br>costume rental booth or<br>from one of the many clothing vendors."

ideas[12] = "<font color=cornflowerblue><b>Can I bring a peace-tied<br>weapon into MDRF?</b></font><br>No weapons (costume or real)<br>are allowed. Additionally, if<br>you purchase a weapon on site,<br>please take it out to your vehicle."

ideas[13] = "<font color=cornflowerblue><b>Can I dress up at MDRF?</b></font><br>Patrons are welcomed to wear<br>costumes suitable for a family-<br>friendly atmosphere to get<br>into the spirit of the event!"

ideas[14] = "<font color=cornflowerblue><b>Can I Perform at MDRF?</b></font><br>No uncontracted performances are<br>permitted. All performers are<br>paid by the King's purse<br>and scheduled by the<br>Artistic Director. "

ideas[15] = "<font color=cornflowerblue><b>Can I work at MDRF?</b></font><br>Check the MDRF website<br>for employment and vendor<br>opportunities. "

ideas[16] = "<font color=cornflowerblue><b>How can I beat the heat at MDRF?</b></font><br>One way is to keep hydrated all day.<br>Eating an ice cold dill pickle<br>can also be very helpful."

ideas[17] = "<font color=cornflowerblue><b>Can I use a wheelchair<br>at MDRF?</b></font><br>The most suitable chairs are<br>motorized or sport style.<br>Hospital style are not advised."

ideas[18] = "<font color=cornflowerblue><b>How big is MDRF?</b></font><br>25 acres of woods and field."

ideas[19] = "<font color=cornflowerblue><b>Can I get married at MDRF?</b></font><br>Absolutely!<br>Contact the office for more<br>information: 1-800-296-7304."

ideas[20] = "<font color=cornflowerblue><b>Is MDRF moving?</b></font><br>Maybe. There are a lot of choices<br>available to management.<br>The reality is that with 280,000<br>visitors each season, they've outgrown<br>the present location."

ideas[21] = "<font color=cornflowerblue><b>How many years has MDRF<br>been celebrated?</b></font><br>2010 marks their 34th season."

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff
