/**
 * Primitive class for any object that appears on mouseover of an element and disappears on mouseout of that element or it's child.
 */
PAMWF.Tooltip = Class.create( PAMWF.PopUp, {
	_group: 'tooltips',
	_class: 'TooltipBox',
	_timeOut: 500,
	_fadeIn: .1,
	_fadeOut: .1,

	initialize: function ( $super, obj )
	{
		$super( obj );
		new Draggable(this._myDiv);
	}	
});