$(document).ready(function() {
    $("#of_note_content .note .copy:hidden").has("div").parent().hover(function() {
        $(this).find(".copy").show();
		$(this).find(".copy").addClass('copyOverlay');
		
    }, function() {
        $(this).find(".copy").hide();
		$(this).find(".copy").removeClass('copyOverlay');
    });
});
