

var oQ2; 
var oA2; 
var oS2; 

var oQuiz2 = new Quiz(); 

	oQuiz2.SetQuestionNumberStyle("1");
	oQuiz2.SetQuestionNumberCssClass("qnumber");
	oQuiz2.SetRequireAllGuesses(true);
	oQuiz2.SetNeedAllGuessesHTML("Please answer all the questions first.");
	oQuiz2.SetNeedAllGuessesCssClass("requireall");
	oQuiz2.SetScoreByPercentage(false);
	oQuiz2.SetScoreCssClass("score");



	// Repeat this indented block for each question 

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Eric was just dumped by his girlfriend who he dated for 4 months and who he really liked. He is your friend and you know that he is so upset he's crying. So you go to him and say:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(1);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);


		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("It's such a turn-off when guys cry, stop being such a wimp!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		

		
		oA2 = new Answer();

			oA2.SetAnswerHTML("Crying won't get you anywhere, you gotta fight for what you want.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);



		oA2 = new Answer();

			oA2.SetAnswerHTML("Hey, it's hard for anyone to deal with being hurt. It's obvious she meant a lot to you and you totally have a right to be upset. You'll need time to get over this, and we can talk about it whenever you want.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Your friend Lisa comes to school in a tight top and a skirt that barely covers her butt. You know it's just to impress this guy she wants. You think she's taking it one step too far, you think to yourself:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(2);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("God, she is beautiful, but it's good to leave some things to his imagination. Girls should flaunt their other great traits like brains, humour, interest in sports, or the fact they love the same music we do.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Go over with a sweater, tell her to put it on and that she looks like a complete slut!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Shrug your shoulders and walk away; after all it's her choice to wear what she wants.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You want to tell your friend Jenny to bring a condom if she's thinking of having sex with her boyfriend at his house that evening. But you're pretty sure she'll say no because of what her boyfriend might think. So you:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(3);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("Offer her the condom you received from the Condomania presentation last week and tell her that if he thinks any less of her he's no good anyway - better to be safe than sorry.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Slip a condom in her purse and hope she'll use it if necessary.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Forget about it, it should be the guy's job to bring protection anyway.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You spent a lot of time setting up your friend Alex with a girl you knew he liked, only to find out he had refused to have sex with her. You go to him and say:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(4);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("What's wrong with you? I thought you liked her?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("It's cool if you don't want to do it. The most important thing is that you know what you want.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("What are you, gay?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Your friend Mikey tells you one day that he never actually had sex with the girls he always said he did - and that he is actually still a virgin. You say to him:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(5);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("I knew you could never stick it up under pressure! LOSER!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("That's cool but too bad you couldn't have said the truth... and what about the girl's feelings?!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Cool, now look what's ahead for you!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You overhear this guy Ben telling his best friend that he plans to dump his girlfriend as soon as he gets her into bed. You are so shocked that when she begins to tell you how much she likes him, you say:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(6);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("You may not want to hear this but I overheard Ben talking to a few of his friends, and he said he's going to dump you. I think you two should talk about what you both really want.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Get a clue, he's just using you!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Umm, yeah, he seems like a really nice guy.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You are at this huge party, and you have just seen your friend Kyle making out with a fourth girl in one night! You know he thinks that makes him super cool, and you think:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(7);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("Wow, impressive, must be a pretty smooth talker.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("He better slow down there and let someone else have a chance.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("If he really wants to impress girls, he should try respecting them first! One of these days it's going to come back at him and hit him in the face!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Kelly is popular and has lots of friends. Recently she started going out with a new guy, who's older. Since she's been going out with him she hasn't been hanging around with her old friends - including you. You start to worry about her and aren't sure whether she's making up her own mind or letting him do it for her. You think:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(8);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("Oh well, you always lose friends when they start going out with someone.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Stick with him. It's the guy's right to set the relationship limits. I'm sure this will only bring them closer.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("It's not good that she's not being herself. Maybe I'll talk with her as a friend and leave in a safe place a list of youth agencies I know about that can really help people in rough situations.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You are talking with these girls who begin to tell you what a slut Carla is for kissing this guy while she had a boyfriend. But you know they ALL know that her boyfriend has been kissing tons of other girls while they've been together. So you say to them:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(9);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("Oh I know - she really has become a skank lately!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("If she's the slut, then what does that make him?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Keep quiet, you don't want to make things awkward.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Because this girl is modest and reserved, she has gained the reputation of being untouchable, and therefore is a challenge the boys find attractive. You know you're a little jealous, and you:");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(10);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("Try to prove that she's a daddy's girl: obviously inexperienced, naive and sheltered because of the way she acts.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Try to show them they are stereotyping her, just because she is a little shy and passive.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Try to convince them that they are wasting their time because shes just a prissy little tease who would never touch any of them - what a freeze!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////


// This is optional 

oQuiz2.RandomizeQuestions();		


