void OnDrag (Vector2 delta)
{
// update to the right scrollview depending the drag movement (vertical or horizontal)
scrollView = (Mathf.Abs(delta.x) > 10*Mathf.Abs(delta.y)) ? horizontalScrollView : verticalScrollView;
if (scrollView && NGUITools.GetActive(this))
scrollView.Drag();
}