﻿     $(function()
        {

        $("#read").click(function(event) {
        event.preventDefault();
        $("#dis-text").slideToggle();
        if ($("#read").text()=="Click here to read the disclaimer.") {
            $("#read").text("Click here to hide the disclaimer.")
        } else {
            $("#read").text("Click here to read the disclaimer.")
        }
        });
        
        
        });
        