﻿function KeepMainHeaderAlive(id) {
    $("#" + id).addClass("Alive");
}

function KillMainHeader(id) {
    $("#" + id).removeAttr("class");
}
