var driftDialog2;
if(!driftDialog2)
{
	driftDialog2={};
}

driftDialog2.init=function(obj,showObj)
{
	
	$(showObj).css("position","absolute");
	
	$(showObj).css("top",$(obj).position().top+$(obj).height()+10);
	
	$(showObj).css("left",$(obj).position().left);

	driftDialog2.isInit=true;
	
}

/**
 * @author 吕靖
 * @param obj 需要依附的控件
 * @param showObj 所要显示层对象
 * 
 * */
driftDialog2.show=function(obj,showObj)
{

	driftDialog2.init(obj,showObj);

	
	$(showObj).slideDown("fast");
	
	
}

driftDialog2.closeIt=function(showObj)
{
	$(showObj).slideUp("fast");
}

