/*--------------------------------------------------------------------------------------*/
/*																						*/
/*	InitiateConversation: When clicked on initiates conversation logic in               */
/*                        textbox manager												*/
/*																						*/
/*																						*/
/*--------------------------------------------------------------------------------------*/
    void InitiateConversation()
    {
        //	Loads file appropriate for this friend's name and susupicion level
        textbox.LoadAndRunConversationWith(this);

        //	Makes text panel visible
        textpanel.alpha          = 1f;
        textpanel.blocksRaycasts = true;
    }