$(document).ready(function(){$("div.postbody").mouseup(function(e){pt=$(this).parents("table.tablebg");if(window.getSelection){theSelection=window.getSelection().toString()}else if(document.getSelection){theSelection=document.getSelection()}else if(document.selection){theSelection=document.selection.createRange().text}if(theSelection){$("#addQuote").remove();$("body").append('<div id="addQuote" style="position: absolute; left: '+(e.pageX+15)+'px; top: '+(e.pageY+15)+'px; z-index:100; border: 1px solid #8FBC8F; padding: 3px; background: #E0FFE0; color: #008000; cursor:pointer"><small>вставить цитату</small></div>');$("#addQuote").click(function(){$(this).hide();username=pt.find("b[class='postauthor']:first").text();insert_text('[quote="'+username+'"]'+theSelection+'[/quote]')});$("#addQuote").oneTime(2000,function(){if($(this).is(':visible')){$(this).animate({height:0,opacity:0},150)}})}})});
