$(document).ready(function(){
  $('#share-this-button').click(function(e){
      e.preventDefault();
      
      $.facebox('<div id="share-container"><div id="share-container-code"><textarea id="copy-paste"><table style="width: 100%; border-collapse: collapse; background-color: #ededed;"><tr><td style="padding: 15px;"><div style="margin-bottom: 12px; height: 26px; line-height: 26px; text-align: right; font-family: Tahoma, sans-serif; font-size: 11px; color: #000;"><a href="http://www.avtobeginner.ru" target="_blank"><img src="http://www.avtobeginner.ru/img/logo-takenews.gif" alt="Начинающий водитель: Статьи" title="Начинающий водитель: Статьи" style="float: left; margin: 0 10px 0 0; width: 163px; height: 20px; border: 0;" /></a><span style="color: #666; text-transform: lowercase;">' + shareThis_date + '</span></div><h1 style="margin: 0 0 10px 0; font-family: Arial, sans-serif; font-size: 14px;"><a href="' + shareThis_url + '" style="color: #0857A6; text-decoration: underline;">' + shareThis_caption + '</a></h1><a href="' + shareThis_url + '"><img src="' + shareThis_image + '" alt="" style="float: left; width: 110px; height: 75px; margin: 0 10px 0 0; border: 0;" /></a><div style="font-family: Arial, sans-serif; font-size: 12px; line-height: 1.4em;">' + shareThis_text + ' <a href="' + shareThis_url + '" style="color: #0857A6; text-decoration: underline;">Читать дальше</a></div></td></tr></table></textarea></div><div id="share-container-label">Скопируйте код в ваш блог. Форма будет выглядеть вот так:</div><div id="share-container-example"><table style="width: 100%; border-collapse: collapse; background-color: #ededed;"><tr><td style="padding: 15px;"><div style="margin-bottom: 12px; height: 26px; line-height: 26px; text-align: right; font-family: Tahoma, sans-serif; font-size: 11px; color: #000;"><a href="http://www.avtobeginner.ru" target="_blank"><img src="http://www.avtobeginner.ru/img/logo-takenews.gif" alt="Начинающий водитель: Статьи" title="Начинающий водитель: Статьи" style="float: left; margin: 0 10px 0 0; width: 163px; height: 20px; border: 0;" /></a><span style="color: #666; text-transform: lowercase;">' + shareThis_date + '</span></div><h1 style="margin: 0 0 10px 0; font-family: Arial, sans-serif; font-size: 14px;"><a href="' + shareThis_url + '" style="color: #0857A6; text-decoration: underline;">' + shareThis_caption + '</a></h1><a href="' + shareThis_url + '"><img src="' + shareThis_image + '" alt="" style="float: left; width: 110px; height: 75px; margin: 0 10px 0 0; border: 0;" /></a><div style="font-family: Arial, sans-serif; font-size: 12px; line-height: 1.4em;">' + shareThis_text + ' <a href="' + shareThis_url + '" style="color: #0857A6; text-decoration: underline;">Читать дальше</a></div></td></tr></table></div></div>');
      
      $('#copy-paste').bind('focus', function(){
        $(this).select();
      });
  });
});  