if (typeof jQuery !== "undefined" && typeof jQuery.modal !== "undefined") {

  jQuery(document).ready(function() {


        jQuery("span.spoiler").hide();

        jQuery('<a class="reveal">&lt;&lt; Reveal full verse &gt;&gt;</a> ').insertBefore('.spoiler');
        jQuery('<a class="hide">&lt;&lt; Hide verse &gt;&gt;</a> ').insertBefore('.tip');

        jQuery("a.hide").hide();

        jQuery("a.reveal").click(function(){
            jQuery(this).parents("p").children("span.spoiler").fadeIn(2500);
            jQuery(this).parents("p").children("a.hide").fadeIn(2500);
            jQuery(this).parents("p").children("a.reveal").fadeOut(600);
            jQuery(this).parents("p").children("span.tip").fadeOut(600);
        });
        jQuery("a.hide").click(function(){
            jQuery(this).parents("p").children("a.reveal").fadeIn(2500);
            jQuery(this).parents("p").children("span.tip").fadeIn(600);
            jQuery(this).parents("p").children("span.spoiler").fadeOut(600);
            jQuery(this).parents("p").children("a.hide").fadeOut(600);
        });
    });
}
