public void onReligionPickerNewGodsPressed()
    {
        smReligion = SMReligion.New_Gods;

        clearMainArea();
        showBasicScreen();

        religionTitle.text = "New Gods";
        religionText.text  = "+ Approved religion, no restrictions.\n" +
                             "- Sexually inhibited.";
    }
    public void onReligionPickerNoGodsPressed()
    {
        smReligion = SMReligion.No_Gods;

        clearMainArea();
        showBasicScreen();

        religionTitle.text = "No Gods";
        religionText.text  = "+ No restrictions.\n" +
                             "- No help.";
    }
    //religion choose screen buttons
    public void onReligionPickerOldGodsPressed()
    {
        smReligion = SMReligion.Old_Gods;

        clearMainArea();
        showBasicScreen();

        religionTitle.text = "Old Gods";
        religionText.text  = "+ Sexually free, wild, and connected to nature.\n" +
                             "- Hates restrictions, bondage.";
    }