var questions= new Array();
questions[0] = "What contaminants will Austin Air cleaners remove from the air?";
questions[1] = "How do I know Austin Air is really the best?";
questions[2] = "What kind of filter does Austin Air use?";
questions[3] = "Do Austin Air cleaners produce any dangerous by-products?";
questions[4] = "Is it complicated to operate?";
questions[5] = "How do I maintain my Austin Air cleaner?";
questions[6] = "How much electricity do Austin Air cleaners consume?";
questions[7] = "How much space do Austin Air cleaners effectively clean?"
questions[8] = "Where should I place my Austin Air cleaner for maximum effectiveness?";
questions[9] = "How should my Austin Air cleaner be positioned in a room?"; 
questions[10] = "Can Austin Air cleaners be left on all the time?";

var answers = new Array();
answers[0] = "Austin Air cleaners deliver a complete filtration solution, removing a wide variety of particles, sub-micron particles, chemicals, gases, micro-organisms and odors. &nbsp;This includes such things as dust, mold, pollen, tobacco smoke, chemical vapors, gases, viruses and bacteria." ;
answers[1] = "Austin Air has been tested by some of the world’s most respected testing labs like Battelle Laboratories and the U.S. Army Corp of Engineers. &nbsp;Extensive tests on flow rate, flow design, removal of vapors, gases and sub-micron particles have been performed on an Austin Air cleaner.<p>As result of this testing, Austin Air was chosen by the US Government to fulfill the largest deployment of air cleaners in American history and chosen by FEMA and The Red Cross to address the serious air quality concerns in post 9/11 New York. &nbsp;When clean air is critical and lives depend on it, Austin Air remains the #1 choice.</p>";
answers[2] = "Austin Air cleaners use a 4-stage filter containing only the best proven filter mediums for cleaning the air. &nbsp;In every Austin Air cleaner, you will find Medical Grade HEPA (High Efficiency Particulate Arrestance) and Activated Carbon addressing the most serious household airborne contaminants. &nbsp;Only trusted technology used in hospitals and operating rooms will be found in Austin Air Cleaners.";
answers[3] = "Unlike air cleaners that use electrostatic-precipitation or ionic generation, the Austin Air cleaners do <b>not</b> emit any by-products such as toxic ozone. &nbsp;The Austin Air cleaner produces nothing but clean air." ;
answers[4] = "Austin Air cleaners are extremely easy to use. &nbsp;Every Austin Air cleaner features a 3-speed centrifugal fan offering a low, medium or high speed setting." ;
answers[5] = "The only maintenance required will be to occasionally vacuum the 4 sides of the air cleaner to remove larger dust particles. &nbsp;Austin Air filters are designed to last up to 5-years under normal residential use, so you won’t be bothered with frequent filter replacements." ;
answers[6] = "The Austin Air cleaner will cost less than a penny (0.7cents) per hour on average. &nbsp;The maximum draw is 135 watts on the highest setting and uses an ordinary 120 volt outlet." ;
answers[7] = "The standard size unit will clean up to 1,500 square feet or an average size bedroom in approximately 15 – 20 minutes.<p>The junior size unit will clean up to 700 square feet or an average size bedroom in approximately 30 – 40 minutes.</p><p>(All estimates assume 8 ft. ceilings with the door closed).</p>";
answers[8] = "We recommend that your Austin Air cleaner be placed in your bedroom. &nbsp;As we sleep our body regenerates.  &nbsp;To do this, our immune system must eliminate all the contaminants we were exposed to the previous day, while also handling the added airborne impurities in the bedroom.<p>By having the air cleaner in the bedroom as you sleep, you remove this extra burden on your immune system, giving your body a chance to completely repair itself. &nbsp;Furthermore, it just makes sense as the average person will spend up to 30% of their life in the bedroom.</p>"; 
answers[9] = "The Austin Air cleaner should be placed at least 4 inches from the wall, allowing air to be freely drawn into all sides of the air cleaner.  &nbsp;This will ensure maximum efficiency and performance.";
answers[10] = "Yes, Austin Air cleaners were designed and built for continuous use. &nbsp;In fact, Austin Air encourages customers to leave their air cleaner on at all times to achieve the healthiest living environment possible.";

//Accessor to lookup a particular question.  Pass in an int.
function getQuestion(ques){
	return questions[ques];	
}

//Accessor to lookup a particular answer.  Pass in an int.
function getAnswer(ans){
	return answers[ans];	
}

//Accessor to find out how many questions we have.
function getQuestionCount(){
	return questions.length;	
}
