// JScript source code
function getElement(name){ 
    return (document.getElementById) ? document.getElementById(name) : document.all[name];
}

function swapDiv(){
    getElement("learnMoreBtn").style.display = "none";
    getElement("homePara").style.display = "block";
}

function swapDivBack(){
    getElement("learnMoreBtn").style.display = "block";
    getElement("homePara").style.display = "none";
}
