

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(" If you were channel surfing with your bf/gf next to you on the couch and saw a scene where a couple was getting it on... would you:");

		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("Turn the channel as fast as you can until you get to the nature channel, wait till your heartbeat slows down and hope that nobody notices?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Watch it cuz you're really interested and you wanna find out more about what it's all about? And is that couple practicing safer sex?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Call all your friends and tell them to go watch it as fast as they can.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Mary and Mario have been going out for 9 months and have talked about sex and have decided to go to the youth clinic for birth control. Mary and Mario have had sexual encounters with other people, although Mary has never had intercourse but has had oral sex. Mary sees a clinic nurse who asks her if she has considered how to protect herself against STDs. Mary?");

		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("Doesn't need to worry about STDs? She knows Mario well enough to know that he doesn't have any diseases.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Should consider protecting both herself and Mark from STDs. Both of them have had some sexual relations and they should have safer sex because you never really know?.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Should tell the nurse that she's over doing it. They're both practically virgins? Mario's only had sex one other time and Mary has only ever done oral sex. No need to worry.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Ray and Rayne are making out at home and their clothes fly off. Ray cums near Rayne's vagina");

		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("Better be safe and go to the clinic because some sperm are quite super and might be able to swim up still and get her pregnant and STDs can still be spread.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("It's all okay, the sperm can't swim up inside anyway. Just wash it off.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Oh my god!!! Oh my god!!! Datz soooo gross? Wash!! Wash!!! Wash!!! Never talk to him again.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Mary and Joe think they should have sex soon. Joe told Mary that he doesn't want to wear a condom. He says he's clean and that when two people are making love they shouldn't have a piece of rubber between them. If Mary's going to do it right she should respond by saying:");

		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("Yeah you're right... I love you and I wouldn't be having sex with you if I didn't, would I?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Yes I love you, but I'm scared...? but she can't find the words to tell him what she's really thinking.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("I love you but... using condoms is smart and protects both of us. I love you... and still need to be safe.");
			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(" Which of the following is the best scenario to lead up to sex?");

		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("Frank and his partner have never done it before... now they are making out and it's getting really hot and heavy like never before.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Frank and his partner talk about safer sex openly and comfortably and have finally both agreed to test it out next Friday.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Frank and his partner have had a few beers, now's a good time to test it out... because if it doesn't turn out right, they have an excuse and can say they can't remember what happened.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Lily and James have been going out for 4 weeks... they have been talking about having sex and they both agree to have safer sex when they do it. Lily is eager to get on with it, but James isn't. His best friend got genital warts the first time he did it! What is the best advice for this couple?");

		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("What's with them anyway... is Lily the slut of the school and James the big loser? Who ever heard of a guy saying no?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("If they use a condom what's the big deal? It will protect you against pregnancy and most STDs.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Good for James for saying what he feels, it's good for people to share their feelings, especially guys. Both partners need to respect each other if one of them is not ready.");
			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(" Jack and Jill have been going out for like over three months. They have been talking about sex, and think they might be ready soon. Jack is always telling Jill what she should wear and who she should hang out with. What should they do?");

		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("Get it on? The best way to fix any difficulties in a relationship is to express the luvin through sex?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Jill better think about things. Jealousy and controlling behaviour are not cool in any relationship. She should try and talk with him about what she feels, and if she doesn't like how he treats her, she should tell Jack to hit the road.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Jack should just urge his partner into bed? It's the guy's right to set the limits and boundaries of the relationship.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Hung and Maria have been involved in for over a year. They love to make out but they haven't done it yet. Does this mean they are ready to do it soon?");

		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("Yes, once they start doing sexual things, there's no reason to say no.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("If they like what they're doing right now... they will LOVE sex!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("What they're doing now feels really good and it's safe. They should stay with what feels comfortable to them.");
			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(" If a guy doesn't hang out in the locker room with his friends because he's scared to show his body... is that a good reason?");

		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("Yes, after all... if his dick is too small, he probably can't have sex anyway.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Wimp!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("He can hang out wherever he wants. But it's not good for anyone to feel bad about their body. Little does he know that most guys are embarassed, and if it's his dick he's worried about he needs to remember that they come in all shapes and sizes.");
			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(" Let's say these two people are having sex. The condom accidentally slips off or breaks in the middle because they didn't put it on right. But they didn't know and continued to have sex and the guy came. They should:");

		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("Have her jump up and down and stand on her head to make sure the sperm can't swim to the egg because of gravity.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Call a youth clinic and ask for the morning after-pill and listen to the instructions.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Pretend nothing happened and pray that everything will be okay.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////


// This is optional 

oQuiz2.RandomizeQuestions();		


