	/* Categories: 1 = Website		(Light Brown)
			   2 = People		(Blue)
			   3 = RP Events		(Green)
			   4 = Umbagollian Info (Red)
	*/

	var MAXQUEST=100; //number of questions available in database
	var MAXANS=4;    //number of answers per question
	var ATCAT=4;     //number of categories
	var QUIZLEN=15;   //the number of questions asked during one session

	var MINLEN=3;		//minimum number of questions asked
	var MAXLEN=MAXQUEST/2;  //maximum number of questions asked
					//should NEVER be higher than MAXQUEST

	color=new Array(ATCAT+1);
		
	color[0]="#F4EFE0"; //colors of the questions of the different categories
	color[1]="#E9CB03"; 
	color[2]="#91B8FF";
	color[3]="#03E357";
	color[4]="#FD5F53";
	bcolor="#660e16";   //background color of the surrounding frames

	question=new Array(MAXQUEST);
	for (i=0;i<MAXQUEST;i++)			//question[0] = the question itself
	{							//question[1]-question[n] = the possible answers
		question[i]=new Array(MAXANS+2);    //not yet implemented: question[n+1]= explanation of the answer
	}
	category=new Array(MAXQUEST);			//category of the question 
	corranswer=new Array(MAXQUEST);		//the correct answer

	question[0][0]="Who is Umbagollah's favourite storyteller?"; 
	question[0][1]="Trevon Andarosel";
	question[0][2]="Samara Jalaya";
	question[0][3]="The Gov";
	question[0][4]="Lord Horatio Glare";
	category[0]=2;
	corranswer[0]=1;

	question[1][0]="Where does Trevon live?";
	question[1][1]="Gum Gooloo Gum Jublet";
	question[1][2]="Ex";
	question[1][3]="Cumber Poidy";
	question[1][4]="Jail";
	category[1]=4;
	corranswer[1]=2;	

	question[2][0]="What was the Umbagollah Irregular originally?";
	question[2][1]="The unstable webserver that hosted the website";
	question[2][2]="A friend of The Gov";
	question[2][3]="A newspaper";
	question[2][4]="A bar";
	category[2]=1;
	corranswer[2]=3;

	question[3][0]="Who wrote the 'potatoe song'?";
	question[3][1]="Trevon Andarosel";
	question[3][2]="Duke Goliath o'Charmien";
	question[3][3]="Samara Jaląya";
	question[3][4]="Peros Ultyssa";
	category[3]=2;
	corranswer[3]=3;
	
	question[4][0]="Who lead the first invasion of Umbagollah?";
	question[4][1]="Horatio Glare";
	question[4][2]="Komordus";
	question[4][3]="Devron Nilder";
	question[4][4]="Dr. Quirk Yesterday";
	category[4]=3;
	corranswer[4]=2;

	question[5][0]="Who were involved in the quest for the 'Jewel of Jail'?";
	question[5][1]="Trevon Andarosel and Samara Jaląya";
	question[5][2]="Horatio Glare and Samara Jaląya";
	question[5][3]="Naimah Seress Myst and Mindspring";
	question[5][4]="Naimah Seress Myst and Jailia Godentine";
	category[5]=3;
	corranswer[5]=4;
	
	question[6][0]="Who was the first person who came spying in Umbagollah?";
	question[6][1]="Cawdor";
	question[6][2]="Komordus";
	question[6][3]="Mindspring";
	question[6][4]="Wolf de Flame";
	category[6]=3;
	corranswer[6]=1;

	question[7][0]="Who maintains the historical museum in Gum Gooloo Gum Jublet?";
	question[7][1]="Lucius Ambulantis";
	question[7][2]="Casandra Fireblade";
	question[7][3]="Aragon Friebel";
	question[7][4]="Mufudazi Flowers";
	category[7]=4;
	corranswer[7]=3;

	question[8][0]="How many login names does Pete have?";
	question[8][1]="3";
	question[8][2]="6"; // PU, DN, EK, JT, WB, HJB 
	question[8][3]="10";
	question[8][4]="15";
	category[8]=2;
	corranswer[8]=2;

	question[9][0]="Where was the first website of Umbagollah hosted?";
	question[9][1]="freespeech.org";
	question[9][2]="geocities.com"; 
	question[9][3]="hobbiton.org";
	question[9][4]="stormpages.com";
	category[9]=1;
	corranswer[9]=1;
	
	question[10][0]="How many time did elapse between the opening of the Umbagollah website and the arrival of the first inhabitant?";
	question[10][1]="1 day";
	question[10][2]="1 week"; 
	question[10][3]="1 month";
	question[10][4]="1 year";
	category[10]=1;
	corranswer[10]=1;

	question[11][0]="Who was Umbagollah's first inhabitant not played by The Gov?";
	question[11][1]="Trevon Andarosel";
	question[11][2]="Goliath o'Charmien"; 
	question[11][3]="Samara Jaląya";
	question[11][4]="Co What'sinaname";
	category[11]=2;
	corranswer[11]=4;
	
	question[12][0]="What is Horatio Glare's favourite animal?";
	question[12][1]="Beastie";
	question[12][2]="Guinea Pig";
	question[12][3]="Hamster";
	question[12][4]="Rat"; 
	category[12]=2;
	corranswer[12]=2;

	question[13][0]="Where did Lord Glare and Dr. Yesterday fell in love?";
	question[13][1]="On the banks of the Fly river";
	question[13][2]="In the Tower of Interosseus";
	question[13][3]="In a bar in Jail";
	question[13][4]="In the forest of Ex"; 
	category[13]=3;
	corranswer[13]=4;

	question[14][0]="Where was the first forum of Umbagollah hosted?";
	question[14][1]="aimoo.com";
	question[14][2]="bravenet.com";
	question[14][3]="ezboard.com";
	question[14][4]="freespeech.org"; 
	category[14]=1;
	corranswer[14]=2;

	question[15][0]="When did the forty foolish travellers leave Gum Gooloo Gum Jublet?";
	question[15][1]="827";
	question[15][2]="944";
	question[15][3]="1066";
	question[15][4]="1115"; 
	category[15]=4;
	corranswer[15]=4;

	question[16][0]="Who wrote 'Umbagollah - the musical'?";
	question[16][1]="Trevon Andarosel";
	question[16][2]="The Gov";
	question[16][3]="Samara Jaląya";
	question[16][4]="Co What'sinaname"; 
	category[16]=2;
	corranswer[16]=3;
	
	question[17][0]="Why did Carver Moss get a shrine?";
	question[17][1]="Because he build the website.";
	question[17][2]="Because he found the lost bagpipers."; 
	question[17][3]="Because he made this quiz.";
	question[17][4]="Because he donated an ad-free forum.";
	category[17]=1;
	corranswer[17]=4;

	question[18][0]="Who is responsible for this quiz?";
	question[18][1]="Trevon Andarosel";
	question[18][2]="The Gov"; 
	question[18][3]="Samara Jaląya";
	question[18][4]="Carver Moss";
	category[18]=1;
	corranswer[18]=1;

	question[19][0]="What is a 'Clinchit'?";
	question[19][1]="A jobless actor";
	question[19][2]="A cunning liar"; 
	question[19][3]="A seaweed farmer";
	question[19][4]="A gifted craftsman";
	category[19]=4;
	corranswer[19]=2;

	question[20][0]="Who is officially dead?";
	question[20][1]="Bardash";
	question[20][2]="Co What'sinaname";
	question[20][3]="Jade Docet";
	question[20][4]="Wolf de Flame"; 
	category[20]=2;
	corranswer[20]=2;

	question[21][0]="Who is Trevon's neighbour in Ex?";
	question[21][1]="Wolf de Flame";
	question[21][2]="Samara Jaląya";
	question[21][3]="Lord Horatio Glare";
	question[21][4]="Stanley";
	category[21]=4;
	corranswer[21]=1;
	
	question[22][0]="What discovered the first expedition to the forest of Ex?";
	question[22][1]="Nothing but trees";
	question[22][2]="A pot of gold";
	question[22][3]="Samara Jaląya";
	question[22][4]="The Tyrannosaurus Horatius";
	category[22]=3;
	corranswer[22]=4;

	question[23][0]="Of what consisted the first army that invaded Umbagollah?";
	question[23][1]="1 king and 1500 soldiers";
	question[23][2]="3 sorcerers and a slimy monster";
	question[23][3]="1 dark elf and 500 orcs";
	question[23][4]="7 lords and 1000 demons";
	category[23]=3;
	corranswer[23]=4;

	question[24][0]="How many of Umbagollah's inhabitants were monsters?";
	question[24][1]="none of them";
	question[24][2]="2";
	question[24][3]="3";
	question[24][4]="all of them";
	category[24]=2;
	corranswer[24]=2;

	question[25][0]="How many elves do live in umbagollah?";
	question[25][1]="None";
	question[25][2]="2";
	question[25][3]="10";
	question[25][4]="Unknown";
	category[25]=2;
	corranswer[25]=1;

	question[26][0]="What is our most discussed RP rule?";
	question[26][1]="Thou shalt roleplay on the forum";
	question[26][2]="Thou shalt not suddenly disappear";
	question[26][3]="Thou shalt not use magic";
	question[26][4]="Thou shalt remember where thou art";
	category[26]=1;
	corranswer[26]=3;

	question[27][0]="What Umbagollah's longest river?";
	question[27][1]="The East Drosophila river";
	question[27][2]="The West Drosophila river";
	question[27][3]="The Fly river";
	question[27][4]="The South Thrip river";
	category[27]=4;
	corranswer[27]=3;

	question[28][0]="Where does most of our aristocracy live nowadays?";
	question[28][1]="Ex";
	question[28][2]="The Falling Hills";
	question[28][3]="Gum Gooloo Gum Jublet";
	question[28][4]="Jail";
	category[28]=4;
	corranswer[28]=1;

	question[29][0]="Pick the oldest inhabitant from those in the list below:";
	question[29][1]="Trevon Andarosel";
	question[29][2]="Samara Jaląya";
	question[29][3]="Naimah Seress Myst";
	question[29][4]="The person currently known as Hairy Joe Bob";
	category[29]=1;
	corranswer[29]=2;

	question[30][0]="What is the time zone of the forum?";
	question[30][1]="Greenwich time";
	question[30][2]="Central European Time";
	question[30][3]="(American) Eastern Standard Time";
	question[30][4]="Eastern Australian Time";
	category[30]=1;
	corranswer[30]=4;

	question[31][0]="What cures Death?";
	question[31][1]="Breathing";
      question[31][2]="Coughing";
	question[31][3]="Hiccuping";
	question[31][4]="Sneezing";
	category[31]=4;
	corranswer[31]=2; 

      question[32][0]="What word was said repetitively before a language was formed?";
      question[32][1]="So";
	question[32][2]="La";
	question[32][3]="Ti";
	question[32][4]="Dog";
	category[32]=4;
	corranswer[32]=2;

	question[33][0]="Where is paper made?";
	question[33][1]="Anatomy";
	question[33][2]="Ex";
	question[33][3]="Furl";
	question[33][4]="Glare";
	category[33]=4;
	corranswer[33]=3;

	question[34][0]="How many Foolish Travelers were there?";
	question[34][1]="Seven";
	question[34][2]="Twenty-three";
	question[34][3]="Thirty-two";
	question[34][4]="Forty";
	category[34]=4;
	corranswer[34]=4;
                                            
	question[35][0]="What is the best thing you can do when you are face to face with a wrapper?";
	question[35][1]="Run away";
	question[35][2]="Lie flat on the ground";
	question[35][3]="Throw stones at it";
	question[35][4]="Get eaten";
	category[35]=3;
	corranswer[35]=3;
	
	question[36][0]="Why did Jailia call her character Jailia?";
	question[36][1]="Because her character was born in Jail";
	question[36][2]="Because it is also her real name";
	question[36][3]="Because it means 'The Gifted' in her own language";
	question[36][4]="Because she couldn't pronounce Samara's last name (Jaląya)";
	category[36]=2;
	corranswer[36]=4;
	
	question[37][0]="Since when is Umbagollah on the internet?"
	question[37][1]="Oktober 1998";
	question[37][2]="Oktober 1999";
	question[37][3]="Oktober 2000";
	question[37][4]="Oktober 2001";
	category[37]=1;
	corranswer[37]=2;

	question[38][0]="What is correct pronounciation of Umbagollah?"
	question[38][1]="<U>Um</U>bagollah";
	question[38][2]="Um<U>ba</U>gollah";
	question[38][3]="Umba<U>gol</U>lah";
	question[38][4]="Umbagol<U>lah</U>";
	category[38]=1;
	corranswer[38]=2;

	question[39][0]="Pithistle Strait is also the home of the Happy Darling";
	question[39][1]="Beastie";
	question[39][2]="Dream";
	question[39][3]="Seaweed";
	question[39][4]="Squid";
	category[39]=4;
	corranswer[39]=4;

	question[40][0]="Where is Aura Pisces remembered for?";
	question[40][1]="Her fancy dresses";
	question[40][2]="Her interview with the Governor";
	question[40][3]="Her love for fish";
	question[40][4]="Her ocean voyage";
	category[40]=2;
	corranswer[40]=4;


	question[41][0]="Anatomie was originally known as...";
	question[41][1]="Peaches";
      question[41][2]="Plums";
      question[41][3]="Raspberries";
      question[41][4]="Small Edible Thingies";
	category[41]=4;
	corranswer[41]=2;

      question[42][0]="Who is the governor of the North-Western Province?";
	question[42][1]="Poise Emmet";
	question[42][2]="Lord Horatio Glare";
      question[42][3]="Naimah Seress Myst";
      question[42][4]="Artic West";
	category[42]=4;
	corranswer[42]=1;
	
	question[43][0]="How did we get rid of the first invasion army?";
	question[43][1]="Our army defeated them after a fierce battle";
      question[43][2]="Our bagpipe music made them run away screaming";
	question[43][3]="We bored them away";
	question[43][4]="We defeated their leader in a theatre sports contest";
	category[43]=3;
	corranswer[43]=3;

	question[44][0]="Who took roleplaying in Umbagollah to a higher level?";
	question[44][1]="Lord Horatio Glare";
	question[44][2]="Komordus";
	question[44][3]="Vyevarin Stone";
	question[44][4]="Dr. Quirk Yesterday";
	category[44]=1;
	corranswer[44]=2;

	question[45][0]="Who tends to fall in love with patients?";
	question[45][1]="Samara Jaląya";
	question[45][2]="Devron Nilder";
	question[45][3]="Vyevarin Stone";
	question[45][4]="Dr. Quirk Yesterday";
	category[45]=2;
	corranswer[45]=1;

	question[46][0]="Who is evil?";
	question[46][1]="Trevon Andarosel";
	question[46][2]="Jade Docet";
	question[46][3]="Martin Madhopper Mux";
	question[46][4]="Devron Nilder";
	category[46]=2;
	corranswer[46]=4;

	question[47][0]="Where is the name 'Umbagollah' derived from?";
	question[47][1]="The words 'Amber' and 'Gold'";
	question[47][2]="The word 'Embargo'";
	question[47][3]="The words 'Oh my god!'";
	question[47][4]="The word 'Umbrella'";
	category[47]=1;
	corranswer[47]=4;

	question[48][0]="Who was the bride of Karaal Dremmings?";
	question[48][1]="Jailia Godentine";
	question[48][2]="Samara Jalaya";
	question[48][3]="Tharia";
	question[48][4]="Quirk Yesterday";
	category[48]=3;
	corranswer[48]=1;

	question[49][0]="Who was the crazy cook at Jailia's wedding?";
	question[49][1]="Jade Docet";
	question[49][2]="Naimah Seress Myst";
	question[49][3]="Mad Albert";
	question[49][4]="Mindspring";
	category[49]=3;
	corranswer[49]=2;

	question[50][0]="Who invented the Voicekeeping Machine?";
	question[50][1]="Martin Madhopper Mux";
	question[50][2]="Mindspring";
	question[50][3]="Devron Nilder";
	question[50][4]="Peros Ultyssa";
	category[50]=3;
	corranswer[50]=1;

	question[51][0]="Where does the character Samara Jaląya originally come from?";
	question[51][1]="The Barony of Treesia";
	question[51][2]="Cuyuni";
	question[51][3]="Kokoland";
	question[51][4]="The World of Saya";
	category[51]=2;
	corranswer[51]=4;

	question[52][0]="Who is NOT a character of Hairy Joe Bob?";
	question[52][1]="Mad Albert";
	question[52][2]="Albert Fault";
	question[52][3]="Devron Nilder";
	question[52][4]="Junkes Tasbane";
	category[52]=2;
	corranswer[52]=2;

	question[53][0]="What character did Trevon never play?";
	question[53][1]="A cat";
	question[53][2]="A tat";
	question[53][3]="A beastie";
	question[53][4]="A bagpiper";
	category[53]=3;
	corranswer[53]=3;

	question[54][0]="Who or what is Gigor?";
	question[54][1]="Lord Glare's servant";
	question[54][2]="An infamous criminal from Jail";
	question[54][3]="Samara's pet snake";
	question[54][4]="A large tree in the forest of Ex";
	category[54]=2;
	corranswer[54]=3;

	question[55][0]="What happened first?";
	question[55][1]="The potatoe party";
	question[55][2]="The quest for the jewel of Jail";
	question[55][3]="The first invasion of Umbagollah";
	question[55][4]="The expedition to the forest of Ex";
	category[55]=3;
	corranswer[55]=4;

	question[56][0]="Who is not a character of Trevon?";
	question[56][1]="Lucius Ambulantis";
	question[56][2]="Isaac Bickerstaff";
	question[56][3]="Mortimer Curlibones";
	question[56][4]="George Grog";
	category[56]=2;
	corranswer[56]=2;

	question[57][0]="What was the highest number of Canadian inhabitants Umbagollah once had?";
	question[57][1]="1";
	question[57][2]="2";
	question[57][3]="3";
	question[57][4]="4";
	category[57]=1;
	corranswer[57]=3;

	question[58][0]="The druid Dark Shade is sometimes seen as a...";
	question[58][1]="Beastie";
	question[58][2]="Snake";
	question[58][3]="Tat";
	question[58][4]="Wolf";
	category[58]=2;
	corranswer[58]=4;

	question[59][0]="Who is the youngest member of the Cumber Poidy choir?";
	question[59][1]="Jimmy Finler";
	question[59][2]="Marionette Quay";
	question[59][3]="Naimah Seress Myst";
	question[59][4]="Mr. Stir-Fry-and-Die";
	category[59]=2;
	corranswer[59]=1;

	question[60][0]="How is the tower of the government in Ex called?";
	question[60][1]="The tower of Foot";
	question[60][2]="The tower of Interosseus";
	question[60][3]="The tower of Masquerade";
	question[60][4]="Mary's Flower Tower";
	category[60]=4;
	corranswer[60]=2;

	question[61][0]="Where do the Forgotten Cuniform Albatrosses build there nest?";
	question[61][1]="Aorist Island";
	question[61][2]="The forest of Ex";
	question[61][3]="The tower of Foot, Ex";
	question[61][4]="Along the coastline of the Falling Hills";
	category[61]=4;
	corranswer[61]=1;

	question[62][0]="With whom did Jailia Godentine share her cave?";
	question[62][1]="Jade Docet";
	question[62][2]="Casandra Fireblade";
	question[62][3]="Agnes Moulcrumpet";
	question[62][4]="Naimah Seress Myst";
	category[62]=2;
	corranswer[62]=4;

	question[63][0]="Who supposed the idea of a chatroom?";
	question[63][1]="Bardah";
	question[63][2]="Naimah Seress Myst";
	question[63][3]="The Gov";
	question[63][4]="A non-inhabitant";
	category[63]=1;
	corranswer[61]=4;

	question[64][0]="What does 'Samara Jaląya' mean?";
	question[64][1]="Born out of Fire";
	question[64][2]="Given by the Wind";
	question[64][3]="Lover of Trees";
	question[64][4]="Please, no!";
	category[64]=2;
	corranswer[64]=1;

	question[65][0]="Did we ever have an inhabitant called Bedsheet?";
	question[65][1]="Yes, and he was male";
	question[65][2]="Yes, and she was a female";
	question[65][3]="Yes, and it was an it";
	question[65][4]="No";
	category[65]=2;
	corranswer[65]=2;

	question[66][0]="What does 'Andarosel' mean?";
	question[66][1]="Channel";
	question[66][2]="Donkey";
	question[66][3]="King";
	question[66][4]="Storyteller";
	category[66]=2;
	corranswer[66]=1;

	question[67][0]="Who was Chin Po?";
	question[67][1]="An aristocrat";
	question[67][2]="A bagpiper";
	question[67][3]="A clockwork artist";
	question[67][4]="A fortuneteller";
	category[67]=3;
	corranswer[67]=2;

	question[68][0]="How many bagpipers got lost during the second invasion of Umbagollah?";
	question[68][1]="just one";
	question[68][2]="seven";
	question[68][3]="twelve";
	question[68][4]="eighteen";
	category[68]=3;
	corranswer[68]=3;

	question[69][0]="What was duke Goliath o'Charmien's greatest love?";
	question[69][1]="Beasties";
	question[69][2]="Food";
	question[69][3]="Horatio Glare";
	question[69][4]="Mirrors";
	category[69]=2;
	corranswer[69]=4;

	question[70][0]="Why does this website have a red background?";
	question[70][1]="It symbolizes the sun rising from the ocean";
	question[70][2]="It is the official color of Umbagollah";
	question[70][3]="It was the result of a vote among our inhabitants";
	question[70][4]="Only Gov knows...";
	category[70]=1;
	corranswer[70]=4;

	question[71][0]="What is the aim of Fairygame?";
	question[71][1]="To let a ball disappear without touching it";
	question[71][2]="To offer the other player more than he offers you";
	question[71][3]="To hit a ball in such a way that it stops rolling at sunset";
	question[71][4]="To run as far as possible with a stick balancing on your nose";
	category[71]=4;
	corranswer[71]=2;

	question[72][0]="How long is an Umbagollian year?";
	question[72][1]="Half of a year on earth";
	question[72][2]="Just as long as a year on earth";
	question[72][3]="Twice as long as a year on earth";
	question[72][4]="It's length varies";
	category[72]=4;
	corranswer[72]=1;

	question[73][0]="Who was (is?) working on a novel playing in Umbagollah?";
	question[73][1]="Trevon Andarosel";
	question[73][2]="Hairy Joe Bob";
	question[73][3]="The Gov";
	question[73][4]="Samara Jaląya";
	category[73]=2;
	corranswer[73]=3;

	question[74][0]="Our Governor is...";
	question[74][1]="male";
	question[74][2]="female";
	question[74][3]="neither";
	question[74][4]="both";
	category[74]=2;
	corranswer[74]=2;

	question[75][0]="Who wrote the texts for the Umbagollian website?";
	question[75][1]="The Gov only";
	question[75][2]="The Gov and Carver Moss wrote it together";
	question[75][3]="The Gov wrote most, but other inhabitants contributed";
	question[75][4]="Mufudazi Flowers and Lucius Ambulantis wrote it together";
	category[75]=1;
	corranswer[75]=3;

	question[76][0]="Where was the open library of Umbagollah located?";
	question[76][1]="In Gum Gooloo Gum Jublet";
	question[76][2]="In Ex";
	question[76][3]="In the forest of Ex";
	question[76][4]="In the Falling Hills";
	category[76]=1;
	corranswer[76]=4;

	question[77][0]="How is Gum Gooloo Gum Jublet mostly abbreviated?";
	question[77][1]="Gum";
	question[77][2]="Gooloo";
	question[77][3]="GGGJ";
	question[77][4]="Jublet";
	category[77]=1;
	corranswer[77]=2;

	question[78][0]="What is not an Umbagollian festival?";
	question[78][1]="The festival at Mid-day";
	question[78][2]="The Day we add one more bit to the Difference Engine.";
	question[78][3]="The Day when everybody sings happily";
	question[78][4]="Two Days of Spherical Noises";
	category[78]=4;
	corranswer[78]=3;

	question[79][0]="Which place nearly got a wall due to the invasion?";
	question[79][1]="Ex";
	question[79][2]="Gum Gooloo Gum Jublet";
	question[79][3]="Jail";
	question[79][4]="Cumber Poidy";
	category[79]=3;
	corranswer[79]=1;

	question[80][0]="Which word was contained in the first topic ever discussed in Umbagollah?";
	question[80][1]="Intensive";
	question[80][2]="Literature";
	question[80][3]="Magician";
	question[80][4]="Mutual";
	category[80]=1;
	corranswer[80]=4;

	question[81][0]="What was the first topic discussed on ezboard?";
	question[81][1]="The meaning of names";
	question[81][2]="The origin of the universe";
	question[81][3]="The Umbagollian renaissance";
	question[81][4]="The winding road of life";
	category[81]=1;
	corranswer[81]=3;

	question[82][0]="What is 'Ordelitis day'?";
	question[82][1]="A foreign festival";
	question[82][2]="The start of term at the Exian university";
	question[82][3]="The first day of the umbagollian new year";
	question[82][4]="The day at which the invasion began";
	category[82]=3;
	corranswer[82]=1;

	question[83][0]="Why did the Moshaba come to Umbagollah?";
	question[83][1]="No-one knows";
	question[83][2]="They were following Casandra Fireblade to arrest her";
	question[83][3]="They were driven out of their home country and looking for a new one";
	question[83][4]="They went on a pilgrimage to the famous forest of Ex";
	category[83]=3;
	corranswer[83]=2;

	question[84][0]="Who is the only member of the Glass family that wants Jimmy Finler to sing?";
	question[84][1]="Auntie Rosamund";
	question[84][2]="Nigel";
	question[84][3]="Nora";
	question[84][4]="Talulah";
	category[84]=3;
	corranswer[84]=1;

	question[85][0]="Who was Caleb Sighwater?";
	question[85][1]="A fierce aristocrat";
	question[85][2]="The first Exian embassador in Gum Gooloo Gum Jublet";
	question[85][3]="The man who founded the university of Ex";
	question[85][4]="The man who lead the battle against the invading army";
	category[85]=4;
	corranswer[85]=2;
		
	question[86][0]="What was Stanley's last name, before he changed it to d'Amour?";
	question[86][1]="Broom";
	question[86][2]="Lovelist";
	question[86][3]="Nevermind";
	question[86][4]="???";
	category[86]=2;
	corranswer[86]=4;
		
	question[87][0]="What is the colour of the trees in the forest of Ex?";
	question[87][1]="Black";
	question[87][2]="Brown";
	question[87][3]="Green";
	question[87][4]="Grey";
	category[87]=4;
	corranswer[87]=4;
		
	question[88][0]="Where is Lady Alizayana remembered for?";
	question[88][1]="Her diplomatic skills in a conflict between Cuyuni and Umbagollah";
	question[88][2]="Her fancy dresses";
	question[88][3]="Her interview with the monster Kilgorr";
	question[88][4]="Her love for the Umbagollian wildlife";
	category[88]=2;
	corranswer[88]=3;
		
	question[89][0]="When was our ezboard forum officially taken into use?";
	question[89][1]="February 1999";
	question[89][2]="December 1999";
	question[89][3]="May 2000";
	question[89][4]="November 2000";
	category[89]=1;
	corranswer[89]=3;
		
	question[90][0]="How did the minister of Poetry and Trees NOT want to defend Ex against the enemy?";
	question[90][1]="By trying to make the enemy happy with bagpipe music";
	question[90][2]="By fortifying the city with big dirt walls";
	question[90][3]="By holding a speech for the enemy camp about the stupidity of warfare";
	question[90][4]="By running away screaming";
	category[90]=3;
	corranswer[90]=2;
		
	question[91][0]="What is the name of Destinee's twin sister?";
	question[91][1]="Beautee";
	question[91][2]="Dignitee";
	question[91][3]="Libertee";
	question[91][4]="M'appellee";
	category[91]=3;
	corranswer[91]=2;

	question[92][0]="What was the name of the ferryperson who brought Dark Shade to Ex?";
	question[92][1]="Daisy";
	question[92][2]="Lily";
	question[92][3]="Margurite";
	question[92][4]="Ophelia";
	category[92]=3;
	corranswer[92]=3;

	question[93][0]="What was Lady Ebola's ultimate goal?";
	question[93][1]="To make a mechanical Diggle-Gazoompf";
	question[93][2]="To invent the wheel";
	question[93][3]="To make a potion that makes people happy";
	question[93][4]="To invent black light";
	category[93]=2;
	corranswer[93]=1;

	question[94][0]="Why do magic spells not work in Umbagollah?";
	question[94][1]="Sorcerers get confused by the country";
	question[94][2]="The air doesn't support magic";
	question[94][3]="The people are immune to magic";
	question[94][4]="The people don't believe in magic";
	category[94]=4;
	corranswer[94]=2;

	question[95][0]="What is the task of the minister of speech?";
	question[95][1]="To establish foreign contacts";
	question[95][2]="To moderate a forum";
	question[95][3]="To prepare the speeches of the Governor";
	question[95][4]="To speak as much as possible";
	category[95]=1;
	corranswer[95]=2;

	question[96][0]="What is our favourite animal?";
	question[96][1]="The bushcat";
	question[96][2]="The glaring ant";
	question[96][3]="The gnawbird";
	question[96][4]="The silversnake";
	category[96]=1;
	corranswer[96]=1;

	question[97][0]="What is not an Umbagollian organisation?";
	question[97][1]="Eden";
	question[97][2]="The Moshaba";
	question[97][3]="Shadowind";
	question[97][4]="The Wild Bunch";
	category[97]=3;
	corranswer[97]=2;

	question[98][0]="Who is not a character of the Gov?";
	question[98][1]="Lord Horatio Glare";
	question[98][2]="Nigel Glass";
	question[98][3]="Chin Po";
	question[98][4]="Dark Shade";
	category[98]=2;
	corranswer[98]=4;

	question[99][0]="Who invented the brothers Forrest and Jareth?";
	question[99][1]="Hairy Joe Bob";
	question[99][2]="The Gov";
	question[99][3]="Samara Jalaya";
	question[99][4]="Naimah Seress Myst";
	category[99]=2;
	corranswer[99]=3;


	