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(".show-hide-text-p6").hide();
	jQuery(".show-hide-text-p7").hide();
	jQuery(".show-hide-text-p8").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").fadeIn("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").fadeOut("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").fadeIn("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").fadeOut("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").fadeIn("slow");
            jQuery(".heading-toggle-open-h3").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p3").fadeOut("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").fadeIn("show");
            jQuery(".heading-toggle-open-h4").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p4").fadeOut("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").fadeIn("show");
            jQuery(".heading-toggle-open-h5").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p5").fadeOut("slow");
            jQuery(".heading-toggle-open-h5").removeClass("down-arrow");
        }

    });
	    // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h6").click(function(event) {
        if (jQuery(".show-hide-text-p6").is(":hidden")){
            jQuery(".show-hide-text-p6").fadeIn("show");
            jQuery(".heading-toggle-open-h6").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p6").fadeOut("slow");
            jQuery(".heading-toggle-open-h6").removeClass("down-arrow");
        }

    });
	    // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h7").click(function(event) {
        if (jQuery(".show-hide-text-p7").is(":hidden")){
            jQuery(".show-hide-text-p7").fadeIn("show");
            jQuery(".heading-toggle-open-h7").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p7").fadeOut("slow");
            jQuery(".heading-toggle-open-h7").removeClass("down-arrow");
        }

    });
	    // JQUERY NORMAL HIDE SHOW EFFECTS
    jQuery(".heading-toggle-open-h8").click(function(event) {
        if (jQuery(".show-hide-text-p8").is(":hidden")){
            jQuery(".show-hide-text-p8").fadeIn("show");
            jQuery(".heading-toggle-open-h8").addClass("down-arrow");
        } else {
            jQuery(".show-hide-text-p8").fadeOut("slow");
            jQuery(".heading-toggle-open-h8").removeClass("down-arrow");
        }

    });
	
			$('.cta-hover').hover(function() { $(this).fadeTo("fast", 0.70); }, function() { $(this).fadeTo("fast", 1); });
});


