diff --git a/Core/Documentation/Doxygen/Concepts/Overview.dox b/Core/Documentation/Doxygen/Concepts/Overview.dox
index 34e8df39be..f5def8bb90 100644
--- a/Core/Documentation/Doxygen/Concepts/Overview.dox
+++ b/Core/Documentation/Doxygen/Concepts/Overview.dox
@@ -1,53 +1,47 @@
/**
\page OverviewPage Introduction: Overview on the Medical Imaging Interaction Toolkit (MITK)
-Four issues are important for advanced interactive medical imaging software:
-
- - the data, not only the original images, but also other data like segmentation results,
-surfaces, vessel-trees, etc.,
-
- the algorithms to extract information from the data or to generate new data,
-
- the visualization of the data, which requires information about the position of the data
-in space and time and
-
- to allow the user to conveniently interact with the data.
-
+MITK is an open source software toolkit for medical image processing, subsequent data analysis and integration of medical hardware.
+It is designed with the aim of providing a modular and heavily reusable code base to enable rapid development of new features. Following
+this design philosophy MITK includes many different specialized modules e.g. the Segmentation Module.
-Adressing these issues is the main goal of the Medical Imaging Interaction Toolkit (MITK). Therfore MITK
-is based on different common open source libraries combining them and adding new features which are needed for
-medical imaging.
+This document is aimed at giving an overview of the general structure of MITK. Furthermore it will give an introduction into the coding
+and design concepts behind this toolkit.
\section OverviewPage_DesignOverview Design Overview
MITK is designed to be used as a pure software library or as a complete application framework. Thus, a user
of MITK can decide if he simply wants to add a new plug-in to the existing application framework or if he needs to implement his
-own application and wants to use MITK as a software library. Depending on the type of use MITK uses different software libraries which is
+own application and wants to use MITK as a software library. Depending on the type of use MITK uses different software libraries, which is
shown in the next figure for overview.
\image html MitkOverview.png "Overview of MITK"
Like shown above, MITK uses the following libraries.
-Using and combining these libraries, MITK adds the following features:
+These are the main libraries MITK is based on. For further functionality you can optionally include others, a list can be found \ref thirdpartylibs "here" .
+
+Based on these libraries, MITK includes the following features:
- High level interactions with data.
- Specialized medical imaging algorithms (e.g. segmentation)
- Support of 3D + t data.
-
- Complete appliction framework, expandable by plug-ins
+
- Complete application framework, expandable by plug-ins
- Standard tools for medical imaging as default plug-ins (e.g. measurement, segmentation)
-
- Many specialized module for different topics on medical imaging (e.g. diffusion imaging, image guided therapy, live image/ultasound data processing)
+
- Many specialized module for different topics on medical imaging (e.g. diffusion imaging, image guided therapy, live image/ultrasound data processing)
-The following pages will guide you through the basic concepts of MITK and give help on develloping software with MITK.
*/