﻿var $survey = function () {
    "use strict";
    return {
        title: function () {
            return "Are you being abused?";
        },
        description: function () {
            return "Take a few minutes to answer the following questions about your relationship. It could be time very well spent. Whether you engage in such behavior often or only occasionally, it's still domestic violence.";
        },
        questions: function () {
            return [
                "I &quot;walk on eggshells&quot; not to upset my partner.",
                "I am frightened of his temper.",
                "I stop seeing friends or family or doing things I enjoy because he doesn&#039;t like them.",
                "I feel I should do what he says so I don&#039;t hurt his feelings.",
                "I want to &quot;rescue&quot; my partner when he is troubled.",
                "I feel I am the only one who can help my partner and &quot;reform&quot; him.",
                "I think my partner will hurt himself if I leave.",
                "I believe jealousy is a sign of love.",
                "I believe the man makes the decisions and the woman pleases him.",
                "I make excuses for my partner&#039;s behaviour when I&#039;m treated badly.",
                "I stop giving my opinion if my partner doesn&#039;t agree with it.",
                "My partner keeps track of my comings and goings.",
                "He often criticizes my body and appearance.",
                "I have been pushed by my partner.",
                "My partner has hit me.",
                "My partner has thrown things at me.",
                "My partner has broken things in front of me.",
                "He has grabbed my arms.",
                "He has tried to choke me.",
                "He has struck my child.",
                "He pounds on walls or furniture around me.",
                "I believe there&#039;s something wrong with me if I don&#039;t enjoy the sexual things my partner makes me do.",
                "My partner harasses me when I don&#039;t want to have sex.",
                "My partner forces me to watch pornographic movies even though he knows I don&#039;t like to.",
                "My partner controls all our spending.",
                "He forbids me to buy certain things for myself.",
                "He downplays my financial contribution to the household."
            ]; 
        },
        submitInstruction: function () {
            return " ";
        },
        resetInstruction: function () {
            return "If you would like to take the test again, click continue.";
        },
        resultsPositive: function () {
            return "Congratulations, you passed! You seem to be in a relationship without abuse.";
        },
        resultsNegative: function () {
            return "You have answered yes to 1 or more of these questions. You should seek support from an organization that deals with domestic abuse, to help put a stop to the abuse. Be aware that both men and women can exhibit violent behavior in relationships. However, the masculine form is often used to describe violent partners because police statistics show that the majority of offenders are men.";
        }

    };
}();


