jQuery(function(){
    jQuery("#fptoggler").toggle(
        function(){
            jQuery("#cds-container").slideDown(300);
            jQuery("#fptoggler").html("Hide Info.")
            document.getElementById("fptoggler").setAttribute('title', 'Click here to hide content.');
        },
        function(){
            jQuery("#cds-container").slideUp(300);
            jQuery("#fptoggler").html("More Info.")
            document.getElementById("fptoggler").setAttribute('title', 'Click here to show additional information.');
        }
    );
});
