﻿function menuActive(div, section)
{
    if (section == "Projects")
        div.style.height = "138px";
    else if (section == "Scripting")
        div.style.height = "46px";
    else if (section == "Religion")
        div.style.height = "46px";
}
function menuDefault(div)
{
    div.style.height = "23px";
}

function codeActive(box)
{
    box.style.height = "500px";
}

function codeDefault(box)
{
    box.style.height = "50px";
}