function Question (theIdentifier, theQuestion, theNumberAnswers, theAnswer) {
	this.theIdentifier = theIdentifier;
	this.theQuestion = theQuestion;
	this.theNumberAnswers = theNumberAnswers;
	this.theAnswer = theAnswer;
}

var questions = new Array();

questions[1] = new Question(101, "On an average day, how often would you discuss the weather?", 4, ["Five times a day or more", "Three times a day", "Once a day", "Never", ""]);
questions[2] = new Question(102, "If you talked to a friend about the weather, on average how long would you discuss it for?", 4, ["30 minutes or more", "15 minutes", "5 minutes", "1 minute or less", ""]);
questions[3] = new Question(103, "If you meet a person of the opposite sex, unknown to you, how likely are you to discuss the weather with them?", 4, ["Always", "Very Likely", "Likely", "Unlikely", ""]);
questions[4] = new Question(104, "If you meet a person of the same sex, unknown to you, how likely are you to discuss the weather with them?", 4, ["Always", "Very Likely", "Likely", "Unlikely", ""]);
questions[5] = new Question(105, "If you discuss the weather, is your encounter likely to turn into a friendship or are you more likely never to talk to them again?", 2, ["Friendship", "Never talk again", "", "", ""]);
questions[6] = new Question(106, "How would you interpret the following weather description?<br><i>London, 12pm, 5°C, light winds, few high clouds, sunny</i>", 5, ["Very good", "Good", "Fair", "Bad", "Very bad"]);
questions[7] = new Question(107, "How would you interpret the following weather description?<br><i>London, 12pm, 18°C, no wind, low clouds, heavy rain</i>", 5, ["Very good", "Good", "Fair", "Bad", "Very bad"]);
questions[8] = new Question(108, "To what extent do you find the weather affects your mood/well-being?", 4, ["No effect", "Mild effect", "Significant effect, but I don't think I suffer from Seasonal Affective Disorder (SAD)", "I sometimes suffer from/have suffered from Seasonal Affective Disorder (SAD)", ""]);
questions[9] = new Question(109, "Do you think the weather or climate in any way impacts on your salary?", 2, ["Yes", "No", "", "", ""]);
questions[10] = new Question(110, "Has a weather phenomenon ever changed the course of your life dramatically?", 2, ["Yes", "No", "", "", ""]);
questions[11] = new Question(111, "In which season do you think you eat the healthiest?", 4, ["Spring", "Summer", "Autumn", "Winter", ""]);
questions[12] = new Question(112, "In which season do you kiss your partner most?", 4, ["Spring", "Summer", "Autumn", "Winter", ""]);
questions[13] = new Question(113, "In which season do you kiss someone other than your partner most?", 4, ["Spring", "Summer", "Autumn", "Winter", ""]);
questions[14] = new Question(114, "Do you think your tolerance to others is proportional to the weather?", 2, ["Yes", "No", "", "", ""]);
questions[15] = new Question(115, "To what extent are you aware of the weather outside your workplace?", 4, ["Completely", "Very", "Little", "Not at all", ""]);
questions[16] = new Question(116, "Which do you prefer: paintings with clouds or paintings with blue skies?", 2, ["Clouds", "Blue skies", "", "", ""]);
questions[17] = new Question(117, "Do we have a weather response gene?", 2, ["Yes", "No", "", "", ""]);
questions[18] = new Question(118, "If you could, would you like to control the weather?", 2, ["Yes", "No", "", "", ""]);
questions[19] = new Question(119, "Do you think televised weather forecasts sponsored by companies tend to alter the weather prediction in favour of the sponsor?", 2, ["Yes", "No", "", "", ""]);
questions[20] = new Question(120, "How often do you use weather forecasts on the internet?", 2, ["Often", "Sometimes", "Never", "", ""]);
questions[21] = new Question(121, "How often do you mention the weather when writing an email to a friend?", 4, ["Often", "Sometimes", "Never", "", ""]);
questions[22] = new Question(122, "Do you ever discuss the weather when visiting online chatrooms?", 2, ["Often", "Sometimes", "Never", "", ""]);
