function do_prompt() {
$(".prompt").hover(function() {$("body").append("<div id='prompt_wind' style='display:none;position:absolute; top:0; left:0; background:#CFCAFB; border: 3px double white; padding:5px; width:300px'><font size=2 color=black>"+$(this).attr("qrux")+"</font></div>"); $("#prompt_wind").slideDown("fast")}, function(){$("#prompt_wind").remove()});
$(".prompt").mousemove(function(e) {$("#prompt_wind").css({'top':e.pageY+15, 'left':e.pageX+10})});
}