$(document).ready(function(){
var $helpText = $(".instruction");
$helpText.each(function(){
_this = $(this);
_this.children().hide();
_this.append('<div class="fa fa-question-circle helpTextQuestionMrk"></div>');
_this.find(".helpTextQuestionMrk").mouseover(function(){
$(this).siblings('p').show();
});
_this.find(".helpTextQuestionMrk").mouseout(function(){
$(this).siblings('p').hide();
});
})
var $newView = $(".TYPE-note.new-view").find("._pDisLink");
if($newView.length){
$newView.show();
$(".RIGHT-basi,.RIGHT-tag,.RIGHT-year, .RIGHT-related_overview").hide();
$("#_addBasis").click(function(){
$(".RIGHT-basi").show();
$(this).hide();
});
$("#_addMoreInfo").click(function(){
$(".RIGHT-tag,.RIGHT-year,.RIGHT-related_overview").show();
$(this).hide();
});
}
})