$(document).ready(function() {

$(".quoteButton").click(function() {
  
  var commentString = $(this).attr("alt").split("-");
  var commentNum = commentString[0];
  var author = commentString[1];
  var comment = $("#contents"+commentNum).html();
  
  $('#comment_post').tinymce().execCommand('mceInsertContent', false, '<blockquote class="commentQuote">'+author+' wrote: <br>'+comment+'</blockquote>');
 
});




$(".commentActions").each(function(){

$(this).hide();

});


$(".comment_post").hover(
  
  function() {
    $(this).find(".commentActions").show();
  },
  function() {
    $(this).find(".commentActions").hide();
  }
  
);

$("#comment_pagination a").each(function(){
		var oldLink = $(this).attr('href')+'#comments';
		$(this).attr('href', oldLink);
	});
	
});
