﻿// JScript File

//functions for hiding/showing the footer

function hidefooter() {
    document.getElementById("footer").className = "footerHide";
    document.getElementById("mortCalcSliders").className = "footerHide";
    document.body.className = "wrapperDark";
}

function showfooter() {
    document.getElementById("footer").className = "";
    document.getElementById("mortCalcSliders").className = "";
    document.body.className = "";
}
