// ---------------------------------------------
// =TouchUtils [Object]
// ---------------------------------------------
var TouchUtils = 
{
// 	Utils
	supportsTouch : ('createTouch' in document),
	
// 	Events management
	TOUCH_START : (this.supportsTouch) ? 'touchstart' 	: 'mousedown',
	TOUCH_MOVE 	: (this.supportsTouch) ? 'touchmove' 	: 'mousemove',
	TOUCH_END 	: (this.supportsTouch) ? 'touchend' 	: 'mouseup',
	CLICK 		: (this.supportsTouch) ? 'click' 		: 'click'
};
