public static void ManipulateAndStartInertia(UIElement manipulatedElement)
 {
     manipulatedElement.Dispatcher.BeginInvoke((InvokeHandler) delegate
     {
         Manipulation.AddManipulator(manipulatedElement, new InertiaDummyManipulator(manipulatedElement));
     });
 }