jQuery(document).ready(function(){
    jQuery(".show-hide-text-p1").hide();
    jQuery(".show-hide-text-p2").hide();
    jQuery(".show-hide-text-p3").hide();
    jQuery(".show-hide-text-p4").hide();
    jQuery(".show-hide-text-p5").hide();
    // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h1").click(function(event) {
        if (jQuery(".show-hide-text-p1").is(":hidden")){
            jQuery(".show-hide-text-p1").show("slow");
            jQuery(".heading-toggle-open-h1").addClass("down-arrow");
            jQuery(".read-more").hide("slow");
        } else {
            jQuery(".read-more").show("slow");
            jQuery(".show-hide-text-p1").hide("slow");
            jQuery(".heading-toggle-open-h1").removeClass("down-arrow")

        }
    });
    // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h2").click(function(event) {
        if (jQuery(".show-hide-text-p2").is(":hidden")){
            jQuery(".show-hide-text-p2").show("slow");
            jQuery(".heading-toggle-open-h2").addClass("down-arrow");
            jQuery(".read-more2").hide("slow");
        } else {
            jQuery(".read-more2").show("slow");
            jQuery(".show-hide-text-p2").hide("slow");
            jQuery(".heading-toggle-open-h2").removeClass("down-arrow");
        }

    });
    // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h3").click(function(event) {
        if (jQuery(".show-hide-text-p3").is(":hidden")){
            jQuery(".show-hide-text-p3").show("slow");
            jQuery(".heading-toggle-open-h3").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p3").hide("slow");
            jQuery(".heading-toggle-open-h3").removeClass("down-arrow");
        }

    });
    // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h4").click(function(event) {
        if (jQuery(".show-hide-text-p4").is(":hidden")){
            jQuery(".show-hide-text-p4").show("show");
            jQuery(".heading-toggle-open-h4").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p4").hide("slow");
            jQuery(".heading-toggle-open-h4").removeClass("down-arrow");
        }

    });
        // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h5").click(function(event) {
        if (jQuery(".show-hide-text-p5").is(":hidden")){
            jQuery(".show-hide-text-p5").show("show");
            jQuery(".heading-toggle-open-h5").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p5").hide("slow");
            jQuery(".heading-toggle-open-h5").removeClass("down-arrow");
        }

    });
});

