

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(" Your friend Eric was just dumped by his girl. They dated for 4 months and he was totally hooked on her. Hes your buddy and you know that hes so upset he's crying. You go up 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("Dude, only girls cry, stop being such a wimp!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Man, this is the best thing that ever happened to you - I've got some other girls who cant wait to meet you!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("It's alright to be upset about these things, you obviously liked her a lot. You'll find someone else when youre 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(" 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. Not impressed, you:");

		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("Tell her that if he can't see her for more then just her clothes, hes not good enough for her anyway. And there are other ways to grab a guys attention.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Yell slut from the other side of the hall and laugh about it for the rest of the day.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Throw her a sweatshirt in the hopes that she might get the clue.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" A close friend of yours, Jenny, is going to spend the night with her boyfriend. You know she won't bring a condom because she's scared of what he might think or say. 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("Tell her it's better to be safe than sorry - guys like a girl that's smart.");
			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 coat - then at least it's there.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Forget about it. It should be the guys job to bring protection.");
			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 he turned down her offer to have sex. 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("Nothing - what's it got to do with you?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("It's cool to wait till your ready. The most important thing is 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 hes actually still a virgin. You think:");

		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("Loser. I knew he could never stick it up under pressure! Mammas boy!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Pleasure comes without pressure, and only when it feels good for you. And hey, 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("Gonna have to keep on bugging him and well fix his problem soon enough!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You're talking with some of your buddies, when Ben mentions that he plans to dump his girlfriend, Lily, soon after he gets her into bed. You feel guilty cuz Lily is a friend of yours. Later, when you are hanging out with Lily she begins talking about Ben to you. 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("I'm not sure that Ben is as dedicated as you might think; talk things through before you make a decision you may regret.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Get a clue; hes just using you for sex!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Umm, yeah, you two seem really good together...");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You are at this awesome party, and you have just seen your pal Kyle make out with a fourth girl in one night! He looks like he owns the place, walking around like a pimp, so you say to him:");

		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("Teach me your tricks! What does it take to be such a player?");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Slow down there you mac, let someone else have a chance.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("Dude, you're impressing no one - have you even sat down to talked with any of those girls?");
			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 shes been going out with him she has not 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("It's the guys 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 cool that she's not being herself. I should talk with her as a friend and leave in a safe place a list of youth agencies I know about that can 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 a group of girls who begin to tell you what a slut Carla is for kissing this guy while she was dating Greg. But you ALL know that Greg has been kissing tons of other girls while they've been together. You:");

		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("Agree wholeheartedly with what they say. Girls are always supposed to be loyal.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("Shrug and say: 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(" There's this new girl at your school who is so modest and shy. She has gained a reputation for being untouchable. You have tried several times to get with her, but she is constantly shutting you down. So when you're talking to your friends you say:");

		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("A girl that reserved is probably really inexperienced - a daddy's girl.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("She's shy; she needs to be able to trust before she opens up, that's understandable.");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);


		oA2 = new Answer();

			oA2.SetAnswerHTML("She's just a prissy little tease and such a freeze!");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);
		
			oQ2.AddAnswer(oA2);		


		// Optional 

		oQ2.RandomizeAnswers();
		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////


// This is optional 

oQuiz2.RandomizeQuestions();		


