$(function(){
	$(".xxhy").mouseover(function(e){//对象定位
	var h=0, l=0, w=0, obj = this;
	while(obj != null)
	{
	h += obj.offsetTop;
	l += obj.offsetLeft;
	obj = obj.offsetParent;
	}

	w = $(this).width();

	$("#xxhyalerts").css({'top':h+'px','left':(l+w)+'px'}); 
	$("#xxhyalerts").show("slow");
	})

	$(".xxhy").mouseout(function(e){//隐藏对象
	$("#xxhyalerts").hide("slow");
	})
})