$("#preview")
	.css("position","absolute")
	.css("background-color","#000")
	.css("padding","5px 5px")
	.css("z-index","99999")
	.hide();
function poplink(thisElement, msg)
{
    xOffset = 25;
    yOffset = 15;
	$(thisElement).mousemove(function(e){
		$("#preview")
		.html(''+msg+'')
		.css("top",(e.pageY + yOffset) + "px")
		.css("left",(e.pageX + xOffset) + "px")
		.fadeIn("fast")
		.show();
	}).mouseout(function() {
		setTimeout('killlink()',10000);
	});
}

function killlink()
{
	$("#preview").hide();
}