static Division_Types_Errors_Reader()
        {
            // Load the application wide tables here into 'appWide_Tables'
            appWide_Tables = new Division_Types_Errors_Table();

            // Look for an override table first
            if ((Directory.Exists(Application.StartupPath + "/Override/")) &&
                (File.Exists(Application.StartupPath + "/Override/Division_Types_Errors.xml")))
            {
                appWide_Tables.ReadXml(Application.StartupPath + "/Override/Division_Types_Errors.xml");
            }
            else
            {
                appWide_Tables.ReadXml(Application.StartupPath + "/Data/Division_Types_Errors.xml");
            }


            // Create the image class division table
            imageClassDivisionTable = new Division_Types_Errors_Table.Division_TypeDataTable();
            imageClassDivisionTable.AddDivision_TypeRow(5, "Group", true, true, "Group", "Group", "Grupo", "Groupe");
        }